crashanalysercmd/UI/Plugins/CAPluginCrashAnalyserUi/Tabs/CATabCrashContainerExplorer.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;
       
    26 using CrashItemLib.Crash.Container;
       
    27 using CAPCrashAnalysis.Plugin;
       
    28 
       
    29 namespace CAPluginCrashAnalysisUi.Tabs
       
    30 {
       
    31     internal partial class CATabCrashContainerExplorer : CATabCrashContainerBase
       
    32     {
       
    33         #region Constructors
       
    34         public CATabCrashContainerExplorer( CAPluginCrashAnalysis aSubEngine, CIContainer aContainer )
       
    35             : base( aSubEngine, aContainer )
       
    36         {
       
    37             InitializeComponent();
       
    38             //
       
    39             base.Title = "Crash Details - " + System.IO.Path.GetFileName( aContainer.Source.MasterFileName ); 
       
    40         }
       
    41         #endregion
       
    42 
       
    43         #region Event handlers
       
    44         #endregion
       
    45 
       
    46         #region Event handlers
       
    47         private void CATabCrashContainerExplorer_Load( object sender, EventArgs e )
       
    48         {
       
    49             // Get the primary summary...
       
    50             iCtrl_Container.CIContainer = base.CIContainer;
       
    51         }
       
    52         #endregion
       
    53 
       
    54         #region Internal methods
       
    55         #endregion
       
    56 
       
    57         #region Data members
       
    58         #endregion
       
    59     }
       
    60 }