crashanalysercmd/Libraries/Engine/CrashItemLib/Crash/InfoEnvironment/CIInfoEnvironment.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.Text;
       
    19 using System.Collections.Generic;
       
    20 using CrashItemLib.Crash;
       
    21 using CrashItemLib.Crash.Base;
       
    22 using CrashItemLib.Crash.Base.DataBinding;
       
    23 using CrashItemLib.Crash.Utils;
       
    24 using CrashItemLib.Crash.Container;
       
    25 
       
    26 
       
    27 
       
    28 namespace CrashItemLib.Crash.InfoEnvironment
       
    29 {
       
    30     [CIDBAttributeColumn( "Name", 0 )]
       
    31     [CIDBAttributeColumn( "Value", 1, true )]
       
    32     public class CIInfoEnvironment : CIElement
       
    33     {
       
    34         #region Constructors
       
    35         public CIInfoEnvironment(CIContainer aContainer)
       
    36             : base( aContainer )
       
    37 		{
       
    38 		}
       
    39 		#endregion
       
    40 
       
    41         #region API
       
    42     
       
    43         #endregion
       
    44 
       
    45         #region Properties
       
    46 
       
    47         [CIDBAttributeCell("Test Set", 1)]
       
    48         public string TestSet
       
    49         {
       
    50             get { return iTestSet; }
       
    51             set { iTestSet = value; }
       
    52         }
       
    53 
       
    54         #endregion
       
    55 
       
    56         #region Internal methods
       
    57         #endregion
       
    58 
       
    59         #region From System.Object
       
    60         public override string ToString()
       
    61         {
       
    62             return iTestSet;
       
    63         }
       
    64         #endregion
       
    65 
       
    66     
       
    67         #region Data members
       
    68         private string iTestSet = string.Empty;
       
    69         private string iProductCode = string.Empty;
       
    70         private string iSerialNumber = string.Empty;
       
    71         private List<CIVersionInfo> iVersions = new List<CIVersionInfo>();
       
    72         #endregion
       
    73     }
       
    74 }