crashanalysercmd/UI/Plugins/CAPluginCrashAnalyserUi/Tabs/Base/CATabCrashSummarisableEntityBase.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2004-2008 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 
       
    18 using System;
       
    19 using System.Collections.Generic;
       
    20 using System.ComponentModel;
       
    21 using System.Drawing;
       
    22 using System.Data;
       
    23 using System.Text;
       
    24 using System.Windows.Forms;
       
    25 using CrashItemLib.Crash.Summarisable;
       
    26 using CAPCrashAnalysis.Plugin;
       
    27 
       
    28 namespace CAPluginCrashAnalysisUi.Tabs
       
    29 {
       
    30     internal partial class CATabCrashSummarisableEntityBase : CATabCrashBase
       
    31     {
       
    32         #region Constructors
       
    33         protected CATabCrashSummarisableEntityBase()
       
    34         {
       
    35             // For IDE designer only
       
    36             InitializeComponent();
       
    37         }
       
    38 
       
    39         protected CATabCrashSummarisableEntityBase( CAPluginCrashAnalysis aSubEngine, CISummarisableEntity aEntity )
       
    40             : base( aSubEngine )
       
    41         {
       
    42             iEntity = aEntity;
       
    43             //
       
    44             InitializeComponent();
       
    45             //
       
    46             base.Title = aEntity.Name;
       
    47             //
       
    48             RegisterMenuItems();
       
    49         }
       
    50         #endregion
       
    51         
       
    52         #region Properties
       
    53         [Browsable( false )]
       
    54         [DesignerSerializationVisibility( DesignerSerializationVisibility.Hidden )]
       
    55         protected CISummarisableEntity CISummarisableEntity
       
    56         {
       
    57             get { return iEntity; }
       
    58         }
       
    59         #endregion
       
    60 
       
    61         #region From CATab
       
    62         protected override void RegisterMenuItems()
       
    63         {
       
    64             base.RegisterMenuItems();
       
    65         }
       
    66         #endregion
       
    67 
       
    68         #region Event handlers
       
    69         #endregion
       
    70 
       
    71         #region Event handlers
       
    72         #endregion
       
    73 
       
    74         #region Internal methods
       
    75         #endregion
       
    76 
       
    77         #region Data members
       
    78         private CISummarisableEntity iEntity = null;
       
    79         #endregion
       
    80     }
       
    81 }