crashanalysercmd/UI/Plugins/CAPluginNICDUi/Tabs/CATabNICDViewer.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 CAPluginNICD.Plugin;
       
    26 using CrashAnalyserEngine.Tabs;
       
    27 using CrashAnalyserEngine.Engine;
       
    28 using CrashAnalyserEngine.Interfaces;
       
    29 
       
    30 namespace CAPluginNICDUi.Tabs
       
    31 {
       
    32     internal partial class CATabNICDViewer : CATab
       
    33     {
       
    34         #region Constructors
       
    35         public CATabNICDViewer( CAPluginNICD.Plugin.CAPluginNICD aPlugin )
       
    36         {
       
    37             InitializeComponent();
       
    38             //
       
    39             iPlugin = aPlugin;
       
    40             base.Title = "NICD";
       
    41         }
       
    42         #endregion
       
    43 
       
    44         #region Properties
       
    45         #endregion
       
    46 
       
    47         #region Event handlers
       
    48         private void CATabNICDViewer_Load( object sender, EventArgs e )
       
    49         {
       
    50             iCtrl_CrashDebugger.Info = iPlugin.CrashDebuggerInfo;
       
    51         }
       
    52         #endregion
       
    53 
       
    54         #region Internal methods
       
    55         #endregion
       
    56 
       
    57         #region Data members
       
    58         private readonly CAPluginNICD.Plugin.CAPluginNICD iPlugin;
       
    59         #endregion
       
    60     }
       
    61 }