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

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


    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


    public InterchangePopupMenuManager(InterchangeView view) {
        this(view, new ArrayList<SectionFactories>());
    }

    public InterchangePopupMenuManager(InterchangeView view, List<SectionFactories> sections) {
        this.debugActions = new EntityDebugActions();
        initialize(view);
        for (SectionFactories s : sections) {
            addFactories(s);
        }
        // This manager is created when the InterchangeView is created, which may not necessarily
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.core.action.EntityDebugActions

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.