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

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


        return menuItem;
    }

    private void addProject(InterchangeView view, List<JMenuItem> items) {
        items.add(null);
        Action newProject = new NewProjectAction(view.getWindow(), projectManager);
        items.add(new KongaMenuItem(newProject));
    }
View Full Code Here


                if (newWizardButton != null) {
                    // We want the wizard button before the project button.
                    addOptionButton(newWizardButton, bin);
                    wizardButtonAdded = true;
                }
                ApplicationAction action = new NewProjectAction(view.getWindow(), view.getProjectManager());
                bin.add(KongaButton.forToolbar(action).setUseMediumActionIcon(true));
            } else {
                InterchangeActionFactory f = InterchangeActionFactory.getNewEntityFactory(type);
                ApplicationAction a = f.get(view);
                if (a != null) {
View Full Code Here

TOP

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

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.