Examples of IEclipsePreferences


Examples of org.eclipse.core.runtime.preferences.IEclipsePreferences

        /**
         * Runs the action.
         */
        @Override
        public void run() {
            final IEclipsePreferences prefsNode = ErlangOutlinePage.getPrefsNode();
            final boolean isChecked = isChecked();
            prefsNode.putBoolean(PreferenceConstants.ERLANG_OUTLINE_LINK_WITH_EDITOR,
                    isChecked);
            if (isChecked && editor != null) {
                getTreeViewer().refresh();
            }
            fLinkHelper.setLinkWithEditor(isChecked);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.