Package org.glassfish.flashlight.datatree.impl

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


    }
   
    public static TreeNode createMethodInvoker (String name, Object instance,
            String category, Method m){
          
        TreeNode tn = new MethodInvokerImpl();
        tn.setName(name);
        ((MethodInvoker)tn).setInstance (instance);
        ((MethodInvoker)tn).setMethod (m);
        tn.setCategory(category);
        tn.setEnabled(true);
        return tn;
    }
View Full Code Here

TOP

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

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.