Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/15 18:38:37 (8 years ago)
Author:
mkommend
Message:

#2521: refactored programmable problem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemRefactoring/HeuristicLab.Problems.Programmable.Views/3.3/SingleObjectiveProgrammableProblemView.cs

    r12012 r13345  
    2828namespace HeuristicLab.Problems.Programmable.Views {
    2929  [View("Single-Objective Scriptable Problem View")]
    30   [Content(typeof(SingleObjectiveProgrammableProblem), true)]
     30  [Content(typeof(IProgrammableProblem), true)]
    3131  public partial class SingleObjectiveProgrammableProblemView : ItemView {
    3232    protected ViewHost ScriptView;
    3333
    34     public new SingleObjectiveProgrammableProblem Content {
    35       get { return (SingleObjectiveProgrammableProblem)base.Content; }
     34    public new IProgrammableProblem Content {
     35      get { return (IProgrammableProblem)base.Content; }
    3636      set { base.Content = value; }
    3737    }
Note: See TracChangeset for help on using the changeset viewer.