Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/07/13 16:30:39 (11 years ago)
Author:
ascheibe
Message:

#1886 added tasks and hive tasks for RunCollectionModifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.SolutionCaching.Views/3.3/RunCollectionModifierTasksConfigurator.cs

    r10113 r10114  
    2323using System.Linq;
    2424using System.Windows.Forms;
    25 using HeuristicLab.Analysis.SolutionCaching.RunCollectionModifiers;
     25using HeuristicLab.Analysis.SolutionCaching;
    2626using HeuristicLab.Common;
    2727using HeuristicLab.Core;
     
    3434  public partial class RunCollectionModifierTasksConfigurator : Form {
    3535    public IOptimizer Content { get; set; }
    36     public RunCollectionModifierTask runCollectionModifierTask;
     36    public RunCollectionModifierExecutable runCollectionModifierExecutable;
    3737
    38     public RunCollectionModifierTask RunCollectionModifierTask {
    39       get { return runCollectionModifierTask; }
     38    public RunCollectionModifierExecutable RunCollectionModifierExecutable {
     39      get { return runCollectionModifierExecutable; }
    4040    }
    4141
    4242    public RunCollectionModifierTasksConfigurator() {
    4343      InitializeComponent();
    44       runCollectionModifierTask = new RunCollectionModifierTask();
     44      runCollectionModifierExecutable = new RunCollectionModifierExecutable();
    4545    }
    4646
     
    5555
    5656    private void RunCollectionModifierTasksConfigurator_Load(object sender, EventArgs e) {
    57       viewHost.Content = runCollectionModifierTask;
     57      viewHost.Content = runCollectionModifierExecutable;
    5858    }
    5959
    6060    private void CreateTask() {
    61       runCollectionModifierTask.RunCollection.AddRange(Content.Runs);
    62       MainFormManager.MainForm.ShowContent(runCollectionModifierTask);
     61      runCollectionModifierExecutable.RunCollection.AddRange(Content.Runs);
     62      MainFormManager.MainForm.ShowContent(runCollectionModifierExecutable);
    6363    }
    6464  }
Note: See TracChangeset for help on using the changeset viewer.