Package org.glassfish.flashlight.datatree.impl

Examples of org.glassfish.flashlight.datatree.impl.TreeNodeImpl


*/
public class TreeNodeFactory {
   
    public static TreeNode createTreeNode (String name, Object instance,
            String category){
        TreeNode tn = new TreeNodeImpl (name, category);
        tn.setEnabled (true);
        return tn;
    }
View Full Code Here

TOP

Related Classes of org.glassfish.flashlight.datatree.impl.TreeNodeImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.