Package org.eclipse.jdt.internal.ui.text

Examples of org.eclipse.jdt.internal.ui.text.PreferencesAdapter


     */
    private IPreferenceStore createCombinedPreferenceStore(IEditorInput input) {
        List<IPreferenceStore> stores = new ArrayList<IPreferenceStore>(3);

        stores.add(ForceIdeEditorsPlugin.getDefault().getPreferenceStore());
        stores.add(new PreferencesAdapter(ForceIdeEditorsPlugin.getDefault().getPluginPreferences()));
        stores.add(EditorsUI.getPreferenceStore());

        return new ChainedPreferenceStore(stores.toArray(new IPreferenceStore[stores.size()]));
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.text.PreferencesAdapter

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.