crashanalysercmd/Libraries/File Formats/Plugins/XmlFilePlugin/FileFormat/CXmlCodeSegData.cs
changeset 2 0c91f0baec58
equal deleted inserted replaced
1:7a31f7298d8f 2:0c91f0baec58
       
     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 * The class CCrashInfoCodeSegItem is part of CrashAnalyser CrashInfoFile plugin.
       
    16 * Stores information about one code segment, also known as crash time loaded dll.
       
    17 * 
       
    18 * 
       
    19 */
       
    20 using System;
       
    21 using System.Collections.Generic;
       
    22 using System.Text;
       
    23 
       
    24 namespace XmlFilePlugin.PluginImplementations.FileFormat
       
    25 {
       
    26     internal class CXmlCodeSegItem
       
    27     {
       
    28         #region Constructors
       
    29         public CXmlCodeSegItem()
       
    30         {
       
    31 
       
    32         }
       
    33         public CXmlCodeSegItem(uint aStart, uint aEnd, string aName)
       
    34         {
       
    35             iStart = aStart;
       
    36             iEnd = aEnd;
       
    37             iName = aName;
       
    38         }
       
    39         #endregion
       
    40 
       
    41         #region Properties
       
    42         public uint Start
       
    43         {
       
    44             get { return iStart; }
       
    45             set { iStart = value; }
       
    46         }
       
    47 
       
    48         public uint End
       
    49         {
       
    50             get { return iEnd; }
       
    51             set { iEnd = value; }
       
    52         }
       
    53 
       
    54         public string Name
       
    55         {
       
    56             get { return iName; }
       
    57             set { iName = value; }
       
    58         }
       
    59 
       
    60         #endregion
       
    61 
       
    62         #region Data Members
       
    63 
       
    64         private uint iStart = 0;       
       
    65         private uint iEnd = 0;       
       
    66         private string iName = string.Empty;
       
    67 
       
    68       
       
    69 
       
    70         #endregion
       
    71     }
       
    72 }