tracesrv/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/engine/source/SourceParserResult.java
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     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 * Result from parameter parsing
       
    17 *
       
    18 */
       
    19 package com.nokia.tracecompiler.engine.source;
       
    20 
       
    21 import java.util.List;
       
    22 
       
    23 /**
       
    24  * Result from parameter parsing
       
    25  * 
       
    26  */
       
    27 public class SourceParserResult {
       
    28 
       
    29 	/**
       
    30 	 * Trace name as parsed from source
       
    31 	 */
       
    32 	public String originalName;
       
    33 
       
    34 	/**
       
    35 	 * Parsed name after conversion to valid name
       
    36 	 */
       
    37 	public String convertedName;
       
    38 
       
    39 	/**
       
    40 	 * Trace text as parsed from source
       
    41 	 */
       
    42 	public String traceText;
       
    43 
       
    44 	/**
       
    45 	 * Parameters parsed from source
       
    46 	 */
       
    47 	public List<String> parameters;
       
    48 
       
    49 	/**
       
    50 	 * List of parser-specific data
       
    51 	 */
       
    52 	public List<String> parserData;
       
    53 
       
    54 }