Examples of PreferenceManager


Examples of org.eclipse.jface.preference.PreferenceManager

    public static int openWojPreference() {
        return openPreferencePage(PreferenceConstants.PAGE_ID);
    }

    public static int openPreferencePage(String pageId) {
        PreferenceManager pm = WorkbenchPlugin.getDefault().getPreferenceManager();
        if (pm != null) {
            PreferenceDialog d = new WorkbenchPreferenceDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), pm);
            d.setSelectedNode(pageId);
            d.create();
            return d.open();  
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.