Package org.jitterbit.application.ui.window.action

Examples of org.jitterbit.application.ui.window.action.ViewPreferencesAction


        this.appWin = appWin;
    }

    @Override
    public void execute(String[] params) throws CommandException {
        ViewPreferencesAction action = new ViewPreferencesAction(appWin);
        if (params.length > 0) {
            action.setInitialPath(params);
        }
        ActionUtils.run(action, this, "prefs");
    }
View Full Code Here


        return menu;
    }
   
    private Action createPreferencesAction() {
        ApplicationWindow appWin = controller.getView().getWindow();
        ViewPreferencesAction action = new ViewPreferencesAction(appWin);
        action.putValue(Action.ACCELERATOR_KEY, null);
        action.setInitialPath(OperationGraphPreferencesPage.PATH());
        return action;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.window.action.ViewPreferencesAction

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.