Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/22/10 04:15:53 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on algorithms
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/ProblemView.cs

    r2834 r2851  
    2929  [Content(typeof(Problem), true)]
    3030  [Content(typeof(IProblem), false)]
    31   public partial class ProblemView : NamedItemView {
     31  public partial class ProblemView : ParameterizedNamedItemView {
    3232    public new IProblem Content {
    3333      get { return (IProblem)base.Content; }
     
    5252    protected override void OnContentChanged() {
    5353      base.OnContentChanged();
    54       if (Content == null)
    55         parameterCollectionView.Content = null;
    56       else
    57         parameterCollectionView.Content = ((IProblem)Content).Parameters;
    5854    }
    5955  }
Note: See TracChangeset for help on using the changeset viewer.