blob: 537a0af8b0dc9201c27ef4c7fc67e0649f29dc49 [file] [log] [blame]
package org.eclipse.stem.jobs.preferences;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.stem.jobs.Activator;
/**
* Class used to initialize default preference values.
*/
public class PreferenceInitializer extends AbstractPreferenceInitializer {
/**
* @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
*/
public void initializeDefaultPreferences() {
IPreferenceStore store = Activator.getDefault().getPreferenceStore();
store.setDefault(PreferenceConstants.SIMULATION_SLEEP_BOOLEAN,
SimulationManagementPreferencePage.DEFAULT_SIMULATION_SLEEP);
store
.setDefault(
PreferenceConstants.SIMULATION_SLEEP_MILLISECONDS_INTEGER,
SimulationManagementPreferencePage.DEFAULT_SIMULATION_SLEEP_MILLISECONDS);
store
.setDefault(
PreferenceConstants.REPORT_EACH_UNRESOLVED_IDENTIFIABLE_BOOLEAN,
SimulationManagementPreferencePage.DEFAULT_SIMULATION_REPORT_EACH_UNRESOLVED_IDENTIFIABLE);
store
.setDefault(
PreferenceConstants.REPORT_DANGLING_AIR_TRANPORT_EDGES_BOOLEAN,
SimulationManagementPreferencePage.DEFAULT_SIMULATION_REPORT_DANGLING_AIR_TRANPORT_EDGES);
store
.setDefault(
PreferenceConstants.REPORT_NUMBER_OF_UNRESOLVED_IDENTIFIABLES_BOOLEAN,
SimulationManagementPreferencePage.DEFAULT_SIMULATION_REPORT_NUMBER_UNRESOLVED_IDENTIFIABLE);
store
.setDefault(
PreferenceConstants.USE_SCENARIOS_CACHING_BOOLEAN,
SimulationManagementPreferencePage.DEFAULT_USE_SCENARIOS_CACHING);
} // initializeDefaultPreferences
} // PreferenceInitializer