tracefw/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/source/ExcludedAreaSearchData.java
branchRCL_3
changeset 21 52e343bb8f80
parent 20 ca8a1b6995f6
child 22 e26895079d7c
equal deleted inserted replaced
20:ca8a1b6995f6 21:52e343bb8f80
     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 * Contains search variables during SourceParser.findExcludedAreas call
       
    17 *
       
    18 */
       
    19 package com.nokia.tracecompiler.source;
       
    20 
       
    21 /**
       
    22  * Contains search variables during SourceParser.findExcludedAreas call
       
    23  * 
       
    24  */
       
    25 final class ExcludedAreaSearchData {
       
    26 
       
    27 	/**
       
    28 	 * Data index
       
    29 	 */
       
    30 	int index;
       
    31 
       
    32 	/**
       
    33 	 * Current character
       
    34 	 */
       
    35 	char value;
       
    36 
       
    37 	/**
       
    38 	 * Within line comment flag
       
    39 	 */
       
    40 	boolean inLineComment;
       
    41 
       
    42 	/**
       
    43 	 * Within comment flag
       
    44 	 */
       
    45 	boolean inComment;
       
    46 
       
    47 	/**
       
    48 	 * Within string flag
       
    49 	 */
       
    50 	boolean inString;
       
    51 
       
    52 	/**
       
    53 	 * Within character flag
       
    54 	 */
       
    55 	boolean inChar;
       
    56 
       
    57 	/**
       
    58 	 * Within preprocessor definition flag
       
    59 	 */
       
    60 	boolean inPreprocessor;
       
    61 }