org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/deploy/PreferenceConstants.java
changeset 458 5ff93668b08c
parent 457 f1087591ff71
child 459 c278f0c8917f
equal deleted inserted replaced
457:f1087591ff71 458:5ff93668b08c
     1 /**
       
     2  * Copyright (c) 2009 Symbian Foundation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "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  * Symbian Foundation - initial contribution.
       
    11  * Contributors:
       
    12  * Description:
       
    13  * Overview:
       
    14  * Details:
       
    15  * Platforms/Drives/Compatibility:
       
    16  * Assumptions/Requirement/Pre-requisites:
       
    17  * Failures and causes:
       
    18  */
       
    19 package org.symbian.tools.wrttools.core.deploy;
       
    20 
       
    21 /**
       
    22  * Constant definitions for plug-in preferences
       
    23  */
       
    24 public class PreferenceConstants {
       
    25 
       
    26 	///-----------------keys-----------------------//
       
    27 	
       
    28 	public static final String WRT_DEPLOY_CHOICE = "wrtDeploychoicePreference";	
       
    29 	
       
    30 	public static final String DEPLOYMENT_SETTINGE_PAGE = "org.symbian.tools.wrttools.core.deploy.DeployPreferencePage";
       
    31 	
       
    32 	//---------------------values----------------------------//
       
    33 	
       
    34 	public static final String WRT_DEPLOY_CHOICE_DEVICE = "DEVICE";
       
    35 	
       
    36 	public static final String WRT_DEPLOY_CHOICE_EMULATOR = "EMULATOR";	
       
    37 	
       
    38 	
       
    39 	
       
    40 	public static final String SELECTED_EMULATOR_PATH = "org.symbian.tools.wrttools.emulator";
       
    41 	
       
    42 	public static final String SELECTED_DEVICE_NAME = "selectedDeviceName";
       
    43 	public static final String SELECTED_EMULATOR_NAME = "selectedEmulatorDeviceName";
       
    44 	
       
    45 	public static final String DEBUG_ENABLED = "debugEnabled";
       
    46 
       
    47     public static final String PACKAGE_WITH_ERRORS = "packageWithErrors";
       
    48 }