Package org.eclipse.ui.internal.preferences

Examples of org.eclipse.ui.internal.preferences.IDynamicPropertyMap


                new StandardEditorSystemMenu(site));
       
        DefaultThemeListener themeListener = new DefaultThemeListener(folder, result.getTheme());
        result.getTheme().addListener(themeListener);
       
        IDynamicPropertyMap workbenchPreferences = result.getPluginPreferences(WorkbenchPlugin.getDefault());
       
    new DefaultMultiTabListener(workbenchPreferences,
        IPreferenceConstants.SHOW_MULTIPLE_EDITOR_TABS, folder);

    new DefaultSimpleTabListener(result.getApiPreferences(),
View Full Code Here


        return apiPreferences;
    }
   
    public IDynamicPropertyMap getPluginPreferences(Plugin toQuery) {
        String id = toQuery.getBundle().getSymbolicName();
        IDynamicPropertyMap result = (IDynamicPropertyMap)prefs.get(id);
       
        if (result != null) {
            return result;
        }
       
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.preferences.IDynamicPropertyMap

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.