Java Code Examples for org.openide.nodes.Children#Map

The following examples show how to use org.openide.nodes.Children#Map . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WildflyRegistryNodeFactory.java    From netbeans with Apache License 2.0 4 votes vote down vote up
@Override
public Node getManagerNode(Lookup lookup) {
    return new WildflyManagerNode(new Children.Map(), lookup);
}
 
Example 2
Source File: GSRegistryNodeFactory.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public Node getManagerNode(Lookup lookup) {
    GSInstanceNode tn = new GSInstanceNode(new Children.Map(), lookup);
    return tn;
}
 
Example 3
Source File: JBRegistryNodeFactory.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public Node getManagerNode(Lookup lookup) {
    return new JBManagerNode(new Children.Map(), lookup);
}
 
Example 4
Source File: TomcatRegistryNodeFactory.java    From netbeans with Apache License 2.0 2 votes vote down vote up
/**
  * Return node representing the admin server.  Children of this node are filtered.
  * @param lookup will contain DeploymentFactory, DeploymentManager, Management objects. 
  * @return admin server node.
  */
public Node getManagerNode(Lookup lookup) {
    TomcatInstanceNode tn = new TomcatInstanceNode (new Children.Map(), lookup);
    return tn;
}
 
Example 5
Source File: WLRegistryNodeFactory.java    From netbeans with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a node that represents a particular server instance.
 * 
 * @param lookup a lookup with useful objects such as the deployment 
 *      manager for the instance
 * 
 * @return the node for the instance
 */
public Node getManagerNode(Lookup lookup) {
    return new WLManagerNode(new Children.Map(), lookup);
}