Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/21/10 02:04:44 (14 years ago)
Author:
swagner
Message:

Abandoned policy that the names of all abstract base classes have to end in "Base" (#95)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.cs

    r2662 r2664  
    3535  /// Base class for editors of engines.
    3636  /// </summary>
    37   [Content(typeof(EngineBase), true)]
    38   public partial class EngineBaseView : ItemViewBase {
     37  [Content(typeof(Engine), true)]
     38  public partial class EngineView : ItemView {
    3939    private int executionTimeCounter;
    4040
     
    4343    /// </summary>
    4444    /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="EditorBase"/>.</remarks>
    45     public EngineBase Engine {
    46       get { return (EngineBase)Item; }
     45    public Engine Engine {
     46      get { return (Engine)Item; }
    4747      set { base.Item = value; }
    4848    }
     
    5151    /// Initializes a new instance of <see cref="EngineBaseEditor"/>.
    5252    /// </summary>
    53     public EngineBaseView() {
     53    public EngineView() {
    5454      InitializeComponent();
    5555    }
    56     public EngineBaseView(EngineBase engine)
     56    public EngineView(Engine engine)
    5757      : this() {
    5858      Engine = engine;
Note: See TracChangeset for help on using the changeset viewer.