Package org.jitterbit.cli.ui

Examples of org.jitterbit.cli.ui.ActionCommand


                                        "action.ic.tx.ImportMappings",
                                        "action.ic.tx.ExportMappings",
                                        "action.ic.tx.Migrate"))) {
            Action action = lookupAction(p.second);
            if (action != null) {
                commands.add(new ActionCommand(p.first, action));
            }
        }
    }
View Full Code Here


    public final void setActions(Map<String, Action> actions) {
        for (Map.Entry<String, Action> e : actions.entrySet()) {
            String name = e.getKey();
            Action action = e.getValue();
            add(new ActionCommand(name, action));
        }
    }
View Full Code Here

        impl.configure(page);
    }

    private void installTestAction(IntegrationEntityPage page) {
        impl.addAdditionalToolbarButtons(testSendScheduleButton(page));
        impl.addCommands(new ActionCommand("test", testAction));
    }
View Full Code Here

    private void installServerManager(TargetPage page) {
        page.setServerManager(impl.getView().getServerManager());
    }

    private void installCommands() {
        impl.addCommands(new ActionCommand("test connection", testConnection));
        if (assignPluginAction != null) {
            impl.addCommands(new ActionCommand("plugins", assignPluginAction));
        }
    }
View Full Code Here

        impl.configure(page);
    }

    private void installTestAction(IntegrationEntityPage page) {
        impl.addAdditionalToolbarButtons(testSendEmailButton(page));
        impl.addCommands(new ActionCommand("test", testAction));
    }
View Full Code Here

    private void installServerManager(SourcePage page) {
        page.setServerManager(impl.getView().getServerManager());
    }

    private void installCommands() {
        impl.addCommands(new ActionCommand("test connection", testConnectionAction));
        if (assignPluginAction != null) {
            impl.addCommands(new ActionCommand("plugins", assignPluginAction));
        }
    }
View Full Code Here

    private void addCommands(ScriptPage page) {
        if (debugActions != null) {
            impl.addCommands(CommandFactory.newCommand("test", new TestScriptExecutor(page)));
            impl.addCommands(
                            new ActionCommand("resume", debugActions.getResumeAction()),
                            new ActionCommand("stop", debugActions.getStopAction()),
                            new ActionCommand("step", debugActions.getStepAction())
            );
        }
    }
View Full Code Here

        addActions(view);
        addDeployCommands(view);
    }

    private void addActions(InterchangeView view) {
        add(new ActionCommand("required items tree",
                        new ViewRequiredItemsTreeAction(view.getWindow().getActiveObjectService())));
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.cli.ui.ActionCommand

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.