crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianParserLib/Enums/ValueStoreMethodArguments.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2009 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 */
       
    17 using System;
       
    18 using System.Collections.Generic;
       
    19 using System.Text;
       
    20 
       
    21 namespace SymbianParserLib.Enums
       
    22 {
       
    23     public enum TValueStoreMethodArguments
       
    24     {
       
    25         /// <summary>
       
    26         /// Special value which means that no argument specification is
       
    27         /// supplied at compile time. The parser library runtime will guess
       
    28         /// which arguments it should supply (in the correct order) based
       
    29         /// upon the method signature
       
    30         /// </summary>
       
    31         EValueStoreMethodArgumentCalculateAtRuntime = -1,
       
    32         
       
    33         /// <summary>
       
    34         /// Supply field name as string
       
    35         /// </summary>
       
    36         EValueStoreMethodArgumentNameAsString = 0,
       
    37 
       
    38         /// <summary>
       
    39         /// Supply field name as object
       
    40         /// </summary>
       
    41         EValueStoreMethodArgumentNameAsObject,
       
    42 
       
    43         /// <summary>
       
    44         /// Supply field value
       
    45         /// </summary>
       
    46         EValueStoreMethodArgumentValue,
       
    47 
       
    48         /// <summary>
       
    49         /// Supply paragraph for associated field
       
    50         /// </summary>
       
    51         EValueStoreMethodArgumentParagraph,
       
    52 
       
    53         /// <summary>
       
    54         /// Supply line for associated field
       
    55         /// </summary>
       
    56         EValueStoreMethodArgumentLine,
       
    57 
       
    58         /// <summary>
       
    59         /// Supply field
       
    60         /// </summary>
       
    61         EValueStoreMethodArgumentField,
       
    62     }
       
    63 }