Package org.apache.felix.sigil.eclipse.internal.preferences

Source Code of org.apache.felix.sigil.eclipse.internal.preferences.SigilPreferencesInitializer

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.apache.felix.sigil.eclipse.internal.preferences;

import org.apache.felix.sigil.common.osgi.VersionRangeBoundingRule;
import org.apache.felix.sigil.eclipse.SigilCore;
import org.apache.felix.sigil.eclipse.preferences.PrefsUtils;
import org.apache.felix.sigil.eclipse.preferences.PromptablePreference;
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.jface.preference.IPreferenceStore;

public class SigilPreferencesInitializer extends AbstractPreferenceInitializer
{

    public static final String[] EXCLUDED_RESOURCES = new String[] { ".project",
            ".classpath", ".settings" };

    @Override
    public void initializeDefaultPreferences()
    {
        IPreferenceStore store = SigilCore.getDefault().getPreferenceStore();
        setUpDefaults(store);
        migrateOldPreferences(store);
    }

    /**
     * @param store
     */
    private void setUpDefaults(IPreferenceStore store)
    {
        store.setDefault(SigilCore.OSGI_INSTALL_CHECK_PREFERENCE, true);

        store.setDefault(SigilCore.DEFAULT_VERSION_LOWER_BOUND,
            VersionRangeBoundingRule.Micro.name());
        store.setDefault(SigilCore.DEFAULT_VERSION_UPPER_BOUND,
            VersionRangeBoundingRule.Any.name());

        store.setDefault(SigilCore.DEFAULT_EXCLUDED_RESOURCES,
            PrefsUtils.arrayToString(EXCLUDED_RESOURCES));

        store.setDefault(SigilCore.PREFERENCES_NOASK_OSGI_INSTALL, false);

        store.setDefault(SigilCore.PREFERENCES_ADD_IMPORT_FOR_EXPORT,
            PromptablePreference.Prompt.name());

        store.setDefault(SigilCore.PREFERENCES_REBUILD_PROJECTS,
            PromptablePreference.Prompt.name());

        store.setDefault("repository.order",
            "org.apache.felix.sigil.core.workspaceprovider");
    }
   
    /**
     * @param store
     */
    private void migrateOldPreferences(IPreferenceStore store)
    {
    }
}
TOP

Related Classes of org.apache.felix.sigil.eclipse.internal.preferences.SigilPreferencesInitializer

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.