Exemple #1
0
 /* Creates and returns the instance of the node
  * representing the status 'INFO' of the node.
  * It is used when it spent more time to create elements hierarchy.
  * @return the wait node.
  */
 public static Node createInfoNode() {
   AbstractNode n = new AbstractNode(Children.LEAF);
   n.setName(NbBundle.getMessage(JBItemNode.class, "LBL_InfoNode_DisplayName")); // NOI18N
   n.setShortDescription(NbBundle.getMessage(JBItemNode.class, "LBL_InfoNode_ToolTip")); // NOI18N
   n.setIconBaseWithExtension("org/netbeans/core/resources/exception.gif"); // NOI18N
   return n;
 }
 @Override
 protected Node[] createNodes(String key) {
   if (key.contains("Empty")) {
     return null;
   } else {
     AbstractNode n = new AbstractNode(Children.LEAF);
     n.setName(key);
     return new Node[] {n};
   }
 }
  @Override
  public void setName(String name) {
    String oldName = m_name;

    if (m_name.equals(name)) return;

    super.setName(name);

    m_name = name;

    onRename(oldName, m_name);

    if (m_topComponent != null) m_topComponent.setDisplayName(m_name);
  }
 @Override
 public void resultChanged(LookupEvent le) {
   Logger.getLogger(OscillogramNavigatorPanel.class.getName())
       .log(Level.INFO, manager.getRootContext().getDisplayName());
   Collection<? extends ChannelList> allInstances = this.result.allInstances();
   if (!allInstances.isEmpty()) {
     ChannelList list = allInstances.iterator().next();
     AbstractNode rn =
         new AbstractNode(Children.create(new ChannelChildFactory(list.getChannels()), false));
     rn.setName(list.getName());
     rn.setIconBaseWithExtension("tw/edu/sju/ee/eea/module/iepe/project/iepe_project.png");
     manager.setRootContext(rn);
     return;
   }
   //        manager.setRootContext(Node.EMPTY);
 }
Exemple #5
0
 /* Creates and returns the instance of the node
  * representing the status 'WAIT' of the node.
  * It is used when it spent more time to create elements hierarchy.
  * @return the wait node.
  */
 public static Node createWaitNode() {
   AbstractNode n = new AbstractNode(Children.LEAF);
   n.setName(NbBundle.getMessage(JBItemNode.class, "LBL_WaitNode_DisplayName")); // NOI18N
   n.setIconBaseWithExtension("org/netbeans/modules/j2ee/jboss4/resources/wait.gif"); // NOI18N
   return n;
 }
 public ExtractedContentNode(SleuthkitCase skCase) {
   super(Children.create(new ExtractedContentChildren(skCase), true), Lookups.singleton(NAME));
   super.setName(NAME);
   super.setDisplayName(NAME);
   this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/extracted_content.png");
 }
 @Override
 protected Node createNodeDelegate() {
   AbstractNode n = new AbstractNode(Children.LEAF);
   n.setName("Ahoj");
   return n;
 }