creatorextension/com.nokia.s60tools.creator/src/com/nokia/s60tools/creator/CreatorHelpContextIDs.java
author dpodwall
Tue, 12 Jan 2010 13:17:53 -0600
changeset 0 61163b28edca
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) 2007 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
 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
package com.nokia.s60tools.creator;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
 * IDs for context sensitive help.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
 * @see contexts.xml -file IDs links to <code> <context id="<ID>"> </code>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
public class CreatorHelpContextIDs {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
	 * The plug-in ID. Copy from CreatorActivator.PLUGIN_ID
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
	 * to here to avoid runtime dependency to help project 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
	 */	 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
	private static final String CREATOR_HELP_PROJECT_PLUGIN_ID = "com.nokia.s60tools.creator.help";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
	 * ID to Metadata Editor Help TOC
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
    public static final String CREATOR_HELP_TOC = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
  		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_TOC";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
     * ID to Editing a component
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
    public static final String CREATOR_HELP_MODIFY_COMPONENT = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_MODIFY_COMPONENT";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
     * ID to Adding and component
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
    public static final String CREATOR_HELP_ADD_COMPONENT = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_ADD_COMPONENT";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
     * ID to Contacts
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
    public static final String CREATOR_HELP_CONTACTS = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_CONTACTS";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
     * ID to Contact set
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    63
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    64
    public static final String CREATOR_HELP_CONTACT_SET = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    65
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_CONTACT_SET";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    66
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
     * ID to Calendar
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
    public static final String CREATOR_HELP_CALENDAR = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_CALENDAR";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
     * ID to Messages
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
    public static final String CREATOR_HELP_MESSAGES = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_MESSAGES";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
     * ID to generic component
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
    public static final String CREATOR_HELP_GENERIC_COMPONENT = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_GENERIC_COMPONENT";    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
     * ID to create new script (With wizard)
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
    public static final String CREATOR_HELP_CREATE_SCRIPT = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_CREATE_SCRIPT";      
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
     * ID to random values
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
    public static final String CREATOR_HELP_RANDOM_VALUES = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_RANDOM_VALUES";     
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
     * ID to components
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
    public static final String CREATOR_HELP_COMPONENTS = 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
		  CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_COMPONENTS";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
     * ID to preference page
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
	public static final String PREF_PAGE = CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_PREFERENCES";    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
    /**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
     * ID to run in device
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
     */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
	public static final String RUN_IN_DEVICE_PAGE = CREATOR_HELP_PROJECT_PLUGIN_ID +".CREATOR_HELP_RUN_IN_DEVICE";    
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
}