Package org.jitterbit.integration.client.ui.interchange.core.action

Examples of org.jitterbit.integration.client.ui.interchange.core.action.EntityDebugActions.addToMenu()


    private void addDebugItems(AbstractGraphNode node, JPopupMenu pm) {
        if (DebugMode.IS_ENABLED) {
            pm.addSeparator();
            KongaMenu debug = new KongaMenu("Debug");
            EntityDebugActions actions = new EntityDebugActions();
            actions.addToMenu(debug);
            debug.add(new PrintNodeToConsoleAction(node));
            pm.add(debug);
        }
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.