sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/preferences/PreferenceInitializer.java
author Matti Laitinen <matti.t.laitinen@nokia.com>
Tue, 24 Aug 2010 12:16:27 +0300
changeset 15 0367d2db2c06
parent 6 f65f740e69f9
permissions -rw-r--r--
AnalyzeTool Carbide extension 1.10.0

/*
 * Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 *
 * Contributors:
 *
 * Description:  Definitions for the class PreferenceInitializer
 *
 */

package com.nokia.s60tools.analyzetool.preferences;

import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.jface.preference.IPreferenceStore;

import com.nokia.s60tools.analyzetool.Activator;
import com.nokia.s60tools.analyzetool.global.Constants;

/**
 * Class to initialize default preference values.
 */
public class PreferenceInitializer extends AbstractPreferenceInitializer {

	/*
	 * @seeorg.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#
	 * initializeDefaultPreferences()
	 */
	@Override
	public void initializeDefaultPreferences() {

		IPreferenceStore store = Activator.getPreferences();

		store.setDefault(Constants.LOGGING_MODE, Constants.LOGGING_EXT_FAST);
		store.setDefault(Constants.REPORT_LEVEL, Constants.REPORT_KNOWN);
		store.setDefault(Constants.USE_INTERNAL, false);
		store
				.setDefault(Constants.ATOOL_FOLDER,
						Constants.DEFAULT_ATOOL_FOLDER);
		store.setDefault(Constants.USER_SELECTED_FOLDER,
				Constants.DEFAULT_ATOOL_FOLDER);
		store.setDefault(Constants.CREATE_STATISTIC, false);
		store.setDefault(Constants.USE_ROM_SYMBOL, false);
		store.setDefault(Constants.CALLSTACK_SIZE, 40);
		store.setDefault(Constants.LOGGING_FAST_ENABLED, false);
	}
}