|
From: Lukas P. <pe...@us...> - 2002-09-03 17:52:44
|
Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes
In directory usw-pr-cvs1:/tmp/cvs-serv16754
Modified Files:
SnapshotNode2.java
Log Message:
fixed: was refering SnapshotNode
Index: SnapshotNode2.java
===================================================================
RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes/SnapshotNode2.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** SnapshotNode2.java 28 Aug 2002 18:02:38 -0000 1.1
--- SnapshotNode2.java 3 Sep 2002 17:52:41 -0000 1.2
***************
*** 51,55 ****
public class SnapshotNode2 extends AbstractNode implements SnapshotCookie {
private Snapshot snapshot;
! private static ResourceBundle bundle=NbBundle.getBundle(SnapshotNode.class);
public SnapshotNode2(Snapshot snapshot) {
--- 51,56 ----
public class SnapshotNode2 extends AbstractNode implements SnapshotCookie {
private Snapshot snapshot;
! private static ResourceBundle bundle=NbBundle.getBundle(SnapshotNode2.class
! );
public SnapshotNode2(Snapshot snapshot) {
***************
*** 58,62 ****
setIconBase("/net/sourceforge/javaprofiler/module/resources/SnapshotNodeIcon");
setDisplayName(snapshot.getName());
! setShortDescription(NbBundle.getMessage(SnapshotNode.class, "HINT_snapshotNode"));
getCookieSet().add(this);
}
--- 59,63 ----
setIconBase("/net/sourceforge/javaprofiler/module/resources/SnapshotNodeIcon");
setDisplayName(snapshot.getName());
! setShortDescription(NbBundle.getMessage(SnapshotNode2.class, "HINT_snapshotNode"));
getCookieSet().add(this);
}
***************
*** 79,83 ****
public HelpCtx getHelpCtx() {
! return new HelpCtx(SnapshotNode.class);
}
--- 80,84 ----
public HelpCtx getHelpCtx() {
! return new HelpCtx(getClass());
}
***************
*** 166,181 ****
dialog.setVisible(true);
}
-
- /** Tells if this snapshot was created with call-tree information. For use
- * by the OpenCallTree action.
- */
- public boolean isCallTreeEnabled() {
- //PENDING
- return true;
- }
}
/*
* $Log$
* Revision 1.1 2002/08/28 18:02:38 petrul
* nodes, version 2
--- 167,177 ----
dialog.setVisible(true);
}
}
/*
* $Log$
+ * Revision 1.2 2002/09/03 17:52:41 petrul
+ * fixed: was refering SnapshotNode
+ *
* Revision 1.1 2002/08/28 18:02:38 petrul
* nodes, version 2
|