crashanalysercmd/PerfToolsSharedLibraries/Engine/SymbianDebugLib/PluginAPI/MetaDataConfig/DbgEngineMetaDataConfigStub.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.Collections.Generic;
       
    19 using System.Text;
       
    20 using SymbianUtils;
       
    21 using SymbianStructuresLib.Arm;
       
    22 using SymbianStructuresLib.Arm.Instructions;
       
    23 using SymbianStructuresLib.CodeSegments;
       
    24 using SymbianStructuresLib.Debug.Code;
       
    25 using SymbianDebugLib.Engine;
       
    26 using SymbianDebugLib.Entity;
       
    27 
       
    28 namespace SymbianDebugLib.PluginAPI.Types.MetaDataConfig
       
    29 {
       
    30     internal class DbgEngineMetaDataConfigStub : DbgEngineMetaDataConfig
       
    31     {
       
    32         #region Constructors
       
    33         public DbgEngineMetaDataConfigStub( DbgEngine aEngine )
       
    34             : base( aEngine )
       
    35         {
       
    36         }
       
    37         #endregion
       
    38 
       
    39         #region From DbgCodeEngine
       
    40         public override bool IsReady
       
    41         {
       
    42             get { return false; }
       
    43         }
       
    44         
       
    45         public override string Name
       
    46         {
       
    47             get { return "Meta-Data Config Engine Stub"; }
       
    48         }
       
    49 
       
    50         public override bool IsSupported( string aFileName, out string aType )
       
    51         {
       
    52             aType = string.Empty;
       
    53             return false;
       
    54         }
       
    55 
       
    56         public override DbgPluginPrimer CreatePrimer()
       
    57         {
       
    58             throw new NotImplementedException();
       
    59         }
       
    60 
       
    61         protected override DbgPluginView DoCreateView( string aName )
       
    62         {
       
    63             return null;
       
    64         }
       
    65 
       
    66         protected override void DoClear()
       
    67         {
       
    68         }
       
    69         #endregion
       
    70 
       
    71         #region Properties
       
    72         #endregion
       
    73 
       
    74         #region Internal methods
       
    75         #endregion
       
    76 
       
    77         #region Data members
       
    78         #endregion
       
    79     }
       
    80 }