Package org.jitterbit.integration.client.ui.interchange.entity.transformation.menu

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.menu.NodeExpansionMenu


    private JPopupMenu createToolkitPopupMenu(TransformationPage page) {
        TransformationToolBarMenu toolbarMenu = new TransformationToolBarMenu(page);
        JPopupMenu popup = toolbarMenu.createJMenu(InterchangeMenuDictionary.DICTIONARY).getPopupMenu();
        popup.addSeparator();
        if (page.getObject().isXmlTransformation()) {
            NodeExpansionMenu nodeExpansionMenu = new NodeExpansionMenu(page);
            popup.add(nodeExpansionMenu.createMenu());
        }
        TreeMapperModeMenu displayModeMenu = new TreeMapperModeMenu(page);
        popup.add(displayModeMenu.getMenu());
        return popup;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.transformation.menu.NodeExpansionMenu

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.