crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianUtils/SourceParser/Objects/SrcMethodParameter.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 SymbianUtils.SourceParser.Objects
       
    22 {
       
    23     public class SrcMethodParameter
       
    24     {
       
    25         #region Constructors
       
    26         public SrcMethodParameter()
       
    27         {
       
    28         }
       
    29         #endregion
       
    30 
       
    31         #region API
       
    32         #endregion
       
    33 
       
    34         #region Properties
       
    35         public string Name
       
    36         {
       
    37             get { return iName; }
       
    38             set { iName = value; }
       
    39         }
       
    40         #endregion
       
    41 
       
    42         #region From System.Object
       
    43         public override string ToString()
       
    44         {
       
    45             return Name;
       
    46         }
       
    47         #endregion
       
    48 
       
    49         #region Data members
       
    50         private string iName = string.Empty;
       
    51         #endregion
       
    52     }
       
    53 }