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.Operators.Views/3.3/OperatorView.cs

    r2663 r2664  
    3535  /// The base class for visual representations of items.
    3636  /// </summary>
    37   [Content(typeof(OperatorBase), true)]
    38   public partial class OperatorBaseView : NamedItemBaseView {
    39     public OperatorBase OperatorBase {
    40       get { return (OperatorBase)base.Item; }
     37  [Content(typeof(Operator), true)]
     38  public partial class OperatorView : NamedItemView {
     39    public Operator OperatorBase {
     40      get { return (Operator)base.Item; }
    4141      set { base.Item = value; }
    4242    }
     
    4545    /// Initializes a new instance of <see cref="ItemBaseView"/>.
    4646    /// </summary>
    47     public OperatorBaseView() {
     47    public OperatorView() {
    4848      InitializeComponent();
    4949    }
     
    5252    /// </summary>
    5353    /// <param name="item">The item that should be displayed.</param>
    54     public OperatorBaseView(OperatorBase operatorBase)
     54    public OperatorView(Operator operatorBase)
    5555      : this() {
    5656      OperatorBase = operatorBase;
Note: See TracChangeset for help on using the changeset viewer.