Package org.erlide.ui.util

Examples of org.erlide.ui.util.OverlayPreferenceStore$OverlayKey


    };

    public DefaultErlangFoldingPreferenceBlock() {
        fStore = ErlideUIPlugin.getDefault().getPreferenceStore();
        fKeys = createKeys();
        fOverlayStore = new OverlayPreferenceStore(fStore, fKeys);
    }
View Full Code Here


     * @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
     */
    @Override
    public void init(final IWorkbench workbench) {
        fColorManager = new ColorManager();
        fOverlayStore = new OverlayPreferenceStore(ErlideUIPlugin.getDefault()
                .getPreferenceStore(), new OverlayPreferenceStore.OverlayKey[] {});
        fOverlayStore.addKeys(createOverlayStoreKeys());
        fOverlayStore.load();
        fOverlayStore.start();

View Full Code Here

     * Creates a new preference page.
     */
    public AbstractConfigurationBlockPreferencePage() {
        setDescription();
        setPreferenceStore();
        fOverlayStore = new OverlayPreferenceStore(getPreferenceStore(),
                new OverlayPreferenceStore.OverlayKey[] {});
        fConfigurationBlock = createConfigurationBlock(fOverlayStore);
    }
View Full Code Here

TOP

Related Classes of org.erlide.ui.util.OverlayPreferenceStore$OverlayKey

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.