Package org.erlide.ui.actions

Examples of org.erlide.ui.actions.OpenAction


            return null;
        }

        @Override
        public void open() {
            final OpenAction action = (OpenAction) editor
                    .getAction(IErlangEditorActionDefinitionIds.OPEN);
            if (action != null) {
                action.run();
            }
        }
View Full Code Here


    }

    protected abstract void addFoldingSupport(final ISourceViewer viewer);

    protected void createCommonActions() {
        openAction = new OpenAction(this);
        openAction.setActionDefinitionId(IErlangEditorActionDefinitionIds.OPEN_EDITOR);
        setAction(IErlangEditorActionDefinitionIds.OPEN, openAction);

        final ResourceBundle keyBundle = ErlangEditorMessages
                .getBundleForConstructedKeys();
View Full Code Here

TOP

Related Classes of org.erlide.ui.actions.OpenAction

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.