Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/03/09 17:10:15 (14 years ago)
Author:
mkommend
Message:

removed generic base class ViewBase<T> (ticket #771)

Location:
trunk/sources/HeuristicLab.MainForm.Test/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.Test/3.2/EditorView.cs

    r2458 r2464  
    1212namespace HeuristicLab.MainForm.Test {
    1313  [DefaultViewAttribute]
    14   public partial class EditorView : ViewBase<ArrayList> {
     14  public partial class EditorView : ViewBase, IView<ArrayList> {
    1515    public EditorView() {
    1616      InitializeComponent();
     
    4545      }
    4646    }
     47
     48    #region IView<ArrayList> Members
     49
     50    public void View(ArrayList item) {
     51      throw new NotImplementedException();
     52    }
     53
     54    public ArrayList Item {
     55      get { throw new NotImplementedException(); }
     56    }
     57
     58    #endregion
    4759  }
    4860}
  • trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView.cs

    r2458 r2464  
    1212namespace HeuristicLab.MainForm.Test {
    1313  [DefaultViewAttribute]
    14   public partial class FormView1 : ViewBase<ICollection> {
     14  public partial class FormView1 : ViewBase,IView<ICollection> {
    1515    private int[] array;
    1616    public FormView1() {
    1717      InitializeComponent();
    1818    }
     19
     20    #region IView<ICollection> Members
     21
     22    public void View(ICollection item) {
     23      throw new NotImplementedException();
     24    }
     25
     26    public ICollection Item {
     27      get { throw new NotImplementedException(); }
     28    }
     29
     30    #endregion
    1931  }
    2032}
  • trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView2.cs

    r2458 r2464  
    1010
    1111namespace HeuristicLab.MainForm.Test {
    12   public partial class FormView2 : ViewBase<IEnumerable> {
     12  public partial class FormView2 : ViewBase, IView<IEnumerable> {
    1313    private int[] array;
    1414    public FormView2() {
    1515      InitializeComponent();
    1616    }
     17
     18    #region IView<IEnumerable> Members
     19
     20    public void View(IEnumerable item) {
     21      throw new NotImplementedException();
     22    }
     23
     24    public IEnumerable Item {
     25      get { throw new NotImplementedException(); }
     26    }
     27
     28    #endregion
    1729  }
    1830}
Note: See TracChangeset for help on using the changeset viewer.