srcanaapps/depexplorer/com.nokia.s60tools.appdep/src/com/nokia/s60tools/appdep/ui/preferences/DEPreferenceConstants.java
changeset 0 a02c979e8dfd
equal deleted inserted replaced
-1:000000000000 0:a02c979e8dfd
       
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 package com.nokia.s60tools.appdep.ui.preferences;
       
    20 
       
    21 /**
       
    22  * Class for storing keys to preferences.
       
    23  */
       
    24 public class DEPreferenceConstants {
       
    25 	
       
    26 	/**
       
    27 	 * <code>true</code> value
       
    28 	 */
       
    29 	public static final String TRUE = "true"; //$NON-NLS-1$
       
    30 	
       
    31 	/**
       
    32 	 * <code>false</code> value
       
    33 	 */
       
    34 	public static final String FALSE = "false"; //$NON-NLS-1$
       
    35 	
       
    36 	/**
       
    37 	 * Separator for prefix search order components.
       
    38 	 */
       
    39 	public static final String PREFIX_SEARCH_ORDER_SEPARATOR = ";"; //$NON-NLS-1$
       
    40 
       
    41 	/**
       
    42 	 * preference DB key for prefix search order.
       
    43 	 */
       
    44 	public final static String DE_PREFIX_SEARCH_ORDER_VALUES = "dePrefixSeachOrderValues"; //$NON-NLS-1$
       
    45 	
       
    46 	/**
       
    47 	 * preference DB key for "don't ask again" in Search dialog for confirmation about set as new root component. 
       
    48 	 */
       
    49 	public final static String DE_DONT_ASK_SET_AS_NEW_ROOT_FROM_SEARCH = "deDontAskSetAsNewRootFromSearch";//$NON-NLS-1$
       
    50 
       
    51 }