imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/IMakerKeyConstants.java
author dpodwall
Tue, 12 Jan 2010 13:17:53 -0600
changeset 0 61163b28edca
child 1 7ff23301fe22
permissions -rw-r--r--
initial EPL conversion
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     1
/*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     3
* All rights reserved.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     4
* This component and the accompanying materials are made available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     5
* under the terms of "Eclipse Public License v1.0"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     6
* which accompanies this distribution, and is available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     8
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     9
* Initial Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    11
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    12
* Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    13
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    14
* Description:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    15
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    16
*/
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    17
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    18
package com.nokia.s60tools.imaker;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
public class IMakerKeyConstants {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
	//imaker specific settings
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
	public static final String PRODUCT               = "PRODUCT";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
	public static final String MAKEFILE              = "MAKEFILE";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
	public static final String TARGET_LIST           = "TARGET_LIST";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
	public static final String HWID                  = "HWID";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
	public static final String VERBOSE               = "VERBOSE";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
	public static final String TARGET                = "TARGET";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
	public static final String SYMBOLFILES           = "USE_SYMGEN";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
	public static final String TYPE                  = "TYPE";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
    public static final String ADDITIONAL_PARAMETERS = "ADDITIONAL_PARAMETERS";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
	public static final String MODIFIED_SETTINGS     = "MODIFIED_SETTINGS";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
	public static final String PREFS_DIRECTORY       = "imaker";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
	public static final String DEBUGFILES            = "DEBUG_FILES";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
	//platsim specific settings
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
	public static final String PLATSIM_RUN           = "RUN_PLATSIM";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
	public static final String PLATSIM_INSTANCE      = "PLATSIM_INSTANCE";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
	public static final String SUMMARY_DELIMETER     = "=============================================================================";	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
	public static final int DEFAULT_THREAD_SLEEP_TIME = 100;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
}