Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 10:33:44 (14 years ago)
Author:
svonolfe
Message:

Renamed OneMax to OneMaxProblem and OneMaxView to OneMaxProblemView (#916)

Location:
trunk/sources/HeuristicLab.Problems.OneMax.Views/3.3
Files:
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.OneMax.Views/3.3/OneMaxProblemView.Designer.cs

    r3163 r3164  
    11namespace HeuristicLab.Problems.OneMax.Views {
    2   partial class OneMaxView {
     2  partial class OneMaxProblemView {
    33    /// <summary>
    44    /// Required designer variable.
  • trunk/sources/HeuristicLab.Problems.OneMax.Views/3.3/OneMaxProblemView.cs

    r3163 r3164  
    1010
    1111namespace HeuristicLab.Problems.OneMax.Views {
    12   [View("OneMax View")]
    13   [Content(typeof(OneMax), true)]
    14   public partial class OneMaxView : ProblemView {
    15     public new OneMax Content {
    16       get { return (OneMax)base.Content; }
     12  [View("OneMaxProblem View")]
     13  [Content(typeof(OneMaxProblem), true)]
     14  public partial class OneMaxProblemView : ProblemView {
     15    public new OneMaxProblem Content {
     16      get { return (OneMaxProblem)base.Content; }
    1717      set { base.Content = value; }
    1818    }
     
    2121    /// Initializes a new instance of <see cref="ItemBaseView"/>.
    2222    /// </summary>
    23     public OneMaxView() {
     23    public OneMaxProblemView() {
    2424      InitializeComponent();
    2525    }
     
    2828    /// </summary>
    2929    /// <param name="item">The item that should be displayed.</param>
    30     public OneMaxView(OneMax content)
     30    public OneMaxProblemView(OneMaxProblem content)
    3131      : this() {
    3232      Content = content;
Note: See TracChangeset for help on using the changeset viewer.