tracesrv/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/engine/project/ProjectConstants.java
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     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 * Constant values related to project files
       
    17 *
       
    18 */
       
    19 package com.nokia.tracecompiler.engine.project;
       
    20 
       
    21 /**
       
    22  * Constant values related to project files
       
    23  * 
       
    24  */
       
    25 public interface ProjectConstants {
       
    26 
       
    27 	/**
       
    28 	 * Title of the cache file
       
    29 	 */
       
    30 	String FIXED_ID_DEFINITION_FILE_TITLE = Messages
       
    31 			.getString("ProjectConstants.FixedIdDefinitionFileTitle"); //$NON-NLS-1$
       
    32 
       
    33 	/**
       
    34 	 * Cache file extension
       
    35 	 */
       
    36 	String CACHE_FILE_NAME = "tracecompiler.cache"; //$NON-NLS-1$
       
    37 
       
    38 	/**
       
    39 	 * Fixed ID file extension
       
    40 	 */
       
    41 	String FIXED_ID_DEFINITIONS_FILE_NAME = "fixed_id.definitions"; //$NON-NLS-1$
       
    42 
       
    43 	/**
       
    44 	 * Extension for the file within zip file
       
    45 	 */
       
    46 	String FILE_EXTENSION = ".xml"; //$NON-NLS-1$
       
    47 
       
    48 	/**
       
    49 	 * Less than escape sequence
       
    50 	 */
       
    51 	String LT = "<"; //$NON-NLS-1$
       
    52 
       
    53 	/**
       
    54 	 * Greater than escape sequence
       
    55 	 */
       
    56 	String GT = ">"; //$NON-NLS-1$
       
    57 
       
    58 	/**
       
    59 	 * Indent
       
    60 	 */
       
    61 	String INDENT = "  "; //$NON-NLS-1$
       
    62 
       
    63 	/**
       
    64 	 * End a tag
       
    65 	 */
       
    66 	String END_TAG = ">"; //$NON-NLS-1$
       
    67 
       
    68 	/**
       
    69 	 * Start of end tag
       
    70 	 */
       
    71 	String START_END_TAG = "</"; //$NON-NLS-1$
       
    72 
       
    73 	/**
       
    74 	 * End tag with line feed
       
    75 	 */
       
    76 	String END_TAG_LF = ">\r\n"; //$NON-NLS-1$
       
    77 
       
    78 	/**
       
    79 	 * Start a tag
       
    80 	 */
       
    81 	String START_TAG = "<"; //$NON-NLS-1$
       
    82 
       
    83 	/**
       
    84 	 * Extension tag
       
    85 	 */
       
    86 	String EXTENSION_TAG = "extension"; //$NON-NLS-1$
       
    87 
       
    88 	/**
       
    89 	 * Data tag
       
    90 	 */
       
    91 	String DATA_TAG = "data"; //$NON-NLS-1$
       
    92 
       
    93 	/**
       
    94 	 * Name tag
       
    95 	 */
       
    96 	String NAME_TAG = "name"; //$NON-NLS-1$
       
    97 
       
    98 	/**
       
    99 	 * Object ID tag
       
   100 	 */
       
   101 	String ID_TAG = "id"; //$NON-NLS-1$
       
   102 
       
   103 	/**
       
   104 	 * Constant table entry tag
       
   105 	 */
       
   106 	String CONSTANT_TABLE_ENTRY_TAG = "entry"; //$NON-NLS-1$
       
   107 
       
   108 	/**
       
   109 	 * Parameter tag
       
   110 	 */
       
   111 	String PARAMETER_TAG = "parameter"; //$NON-NLS-1$
       
   112 
       
   113 	/**
       
   114 	 * Trace text tag
       
   115 	 */
       
   116 	String TRACE_TEXT_TAG = "text"; //$NON-NLS-1$
       
   117 
       
   118 	/**
       
   119 	 * Trace tag
       
   120 	 */
       
   121 	String TRACE_TAG = "trace"; //$NON-NLS-1$
       
   122 
       
   123 	/**
       
   124 	 * Parameter type tag
       
   125 	 */
       
   126 	String PARAMETER_TYPE_TAG = "type"; //$NON-NLS-1$
       
   127 
       
   128 	/**
       
   129 	 * Constant table tag
       
   130 	 */
       
   131 	String CONSTANT_TABLE_TAG = "table"; //$NON-NLS-1$
       
   132 
       
   133 	/**
       
   134 	 * Group tag
       
   135 	 */
       
   136 	String GROUP_TAG = "group"; //$NON-NLS-1$
       
   137 
       
   138 	/**
       
   139 	 * Model tag
       
   140 	 */
       
   141 	String MODEL_TAG = "model"; //$NON-NLS-1$
       
   142 
       
   143 	/**
       
   144 	 * Location tag
       
   145 	 */
       
   146 	String LOCATION_TAG = "location"; //$NON-NLS-1$
       
   147 
       
   148 	/**
       
   149 	 * File tag
       
   150 	 */
       
   151 	String LOCATION_FILE_TAG = "file"; //$NON-NLS-1$
       
   152 
       
   153 	/**
       
   154 	 * Line tag
       
   155 	 */
       
   156 	String LOCATION_LINE_TAG = "line"; //$NON-NLS-1$
       
   157 
       
   158 	/**
       
   159 	 * Class name tag
       
   160 	 */
       
   161 	String LOCATION_CLASS_NAME_TAG = "class"; //$NON-NLS-1$
       
   162 
       
   163 	/**
       
   164 	 * Function name tag
       
   165 	 */
       
   166 	String LOCATION_FUNCTION_NAME_TAG = "function"; //$NON-NLS-1$
       
   167 
       
   168 }