sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/preferences/PreferenceInitializer.java
changeset 15 0367d2db2c06
parent 6 f65f740e69f9
--- a/sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/preferences/PreferenceInitializer.java	Tue Aug 24 12:10:03 2010 +0300
+++ b/sysperfana/analyzetoolext/com.nokia.s60tools.analyzetool/src/com/nokia/s60tools/analyzetool/preferences/PreferenceInitializer.java	Tue Aug 24 12:16:27 2010 +0300
@@ -1,21 +1,19 @@
 /*
-* 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
-*
-*/
-
-
+ * 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;
 
@@ -31,22 +29,25 @@
 public class PreferenceInitializer extends AbstractPreferenceInitializer {
 
 	/*
-	 * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
+	 * @seeorg.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#
+	 * initializeDefaultPreferences()
 	 */
 	@Override
 	public void initializeDefaultPreferences() {
 
 		IPreferenceStore store = Activator.getPreferences();
 
-		store.setDefault(Constants.LOGGING_MODE, Constants.LOGGING_EXT);
+		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.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);
 	}
 }
-