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

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


        page.setToolbarPopupMenuActions(getToolbarPopupMenuActions(page));
    }

    public List<Action> getToolbarPopupMenuActions(IntegrationEntityPage page) {
        List<Action> actions = Lists.newArrayList();
        actions.add(new SaveEditorAction(page));
        actions.add(new CloseEditorAction(page));
        actions.add(new CloseOthersAction(page));
        actions.add(new LocatePageInTreeAction(view));
        actions.add(null);
        actions.add(new ViewAdditionalEntityDetailsAction(page.getObject()));
View Full Code Here


        setMementoPath(new String[] { entity.getEntityType().name(), entity.getID().toString() });
        setIcon(model.getSmallIcon());
        setTitleIcon(getSmallIcon());
        setContributeGlobalUndoRedo();
        setCategory(createCategory());
        saveAction = new SaveEditorAction(this);
    }
View Full Code Here

TOP

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

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.