trace/tracebuilder/com.nokia.tracebuilder.view/src/com/nokia/tracebuilder/action/ActionIDs.java
changeset 10 ed1c9f64298a
equal deleted inserted replaced
9:14dc2103a631 10:ed1c9f64298a
       
     1 /*
       
     2  * Copyright (c) 2007 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  * Action ID definitions
       
    17  *
       
    18  */
       
    19 package com.nokia.tracebuilder.action;
       
    20 
       
    21 /**
       
    22  * Action ID definitions
       
    23  * 
       
    24  */
       
    25 interface ActionIDs {
       
    26 
       
    27 	/**
       
    28 	 * Base for action IDs
       
    29 	 */
       
    30 	String ACTION_ID_BASE = "com.nokia.tracebuilder.command."; //$NON-NLS-1$
       
    31 
       
    32 	/**
       
    33 	 * Action icons directory
       
    34 	 */
       
    35 	String ICONS_DIRECTORY = "icons/actions/"; //$NON-NLS-1$
       
    36 
       
    37 	/**
       
    38 	 * GIF file
       
    39 	 */
       
    40 	String GIF = ".gif"; //$NON-NLS-1$
       
    41 
       
    42 	/**
       
    43 	 * Action ID for Add Trace
       
    44 	 */
       
    45 	String ADD_TRACE_ACTION_ID = "add_trace"; //$NON-NLS-1$
       
    46 
       
    47 	/**
       
    48 	 * Action ID for Add Parameter
       
    49 	 */
       
    50 	String ADD_PARAMETER_ACTION_ID = "add_parameter"; //$NON-NLS-1$
       
    51 
       
    52 	/**
       
    53 	 * Action ID for Add Constant
       
    54 	 */
       
    55 	String ADD_CONSTANT_ACTION_ID = "add_constant"; //$NON-NLS-1$
       
    56 
       
    57 	/**
       
    58 	 * Action ID for Delete
       
    59 	 */
       
    60 	String DELETE_ACTION_ID = "delete"; //$NON-NLS-1$
       
    61 
       
    62 	/**
       
    63 	 * Action ID for Delete Traces
       
    64 	 */
       
    65 	String DELETE_TRACES_ACTION_ID = "delete_traces"; //$NON-NLS-1$
       
    66 
       
    67 	/**
       
    68 	 * Action ID for Switch Focus
       
    69 	 */
       
    70 	String FOCUS_ACTION_ID = "focus"; //$NON-NLS-1$
       
    71 
       
    72 	/**
       
    73 	 * Action ID for Edit Properties
       
    74 	 */
       
    75 	String EDIT_PROPERTIES_ACTION_ID = "edit_properties"; //$NON-NLS-1$
       
    76 
       
    77 	/**
       
    78 	 * Action ID for Convert to Trace
       
    79 	 */
       
    80 	String CONVERT_TRACE_ACTION_ID = "convert_trace"; //$NON-NLS-1$
       
    81 
       
    82 	/**
       
    83 	 * Action ID for Instrumenter
       
    84 	 */
       
    85 	String INSTRUMENTER_ACTION_ID = "instrumenter"; //$NON-NLS-1$
       
    86 
       
    87 	/**
       
    88 	 * Action ID for parse enum
       
    89 	 */
       
    90 	String PARSE_ENUM_ACTION_ID = "parse_enum"; //$NON-NLS-1$
       
    91 }