Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/10 10:31:40 (14 years ago)
Author:
gkronber
Message:

Copied refactored plugin infrastructure from branch and merged changeset r2586:2589 from branch into the trunk. #799

Location:
trunk/sources/HeuristicLab.GP.Algorithms/3.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.Algorithms/3.2/HeuristicLabGpAlgorithmsPlugin.cs

    r2566 r2591  
    2626
    2727namespace HeuristicLab.GP.Algorithms {
    28   [ClassInfo(Name = "HeuristicLab.GP.Algorithms-3.2")]
    29   [PluginFile(Filename = "HeuristicLab.GP.Algorithms-3.2.dll", Filetype = PluginFileType.Assembly)]
    30   [Dependency(Dependency = "HeuristicLab.Common-3.2")]
    31   [Dependency(Dependency = "HeuristicLab.Core-3.2")]
    32   [Dependency(Dependency = "HeuristicLab.Data-3.2")]
    33   [Dependency(Dependency = "HeuristicLab.Evolutionary-3.2")]
    34   [Dependency(Dependency = "HeuristicLab.GP-3.3")]
    35   [Dependency(Dependency = "HeuristicLab.GP.Interfaces-3.3")]
    36   [Dependency(Dependency = "HeuristicLab.GP.Operators-3.3")]
    37   [Dependency(Dependency = "HeuristicLab.Logging-3.2")]
    38   [Dependency(Dependency = "HeuristicLab.Operators-3.2")]
    39   [Dependency(Dependency = "HeuristicLab.Random-3.2")]
    40   [Dependency(Dependency = "HeuristicLab.Selection-3.2")]
    41   [Dependency(Dependency = "HeuristicLab.Selection.OffspringSelection-3.2")]
    42   [Dependency(Dependency = "HeuristicLab.SequentialEngine-3.2")]
     28  [Plugin("HeuristicLab.GP.Algorithms-3.2")]
     29  [PluginFile("HeuristicLab.GP.Algorithms-3.2.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.Common-3.2")]
     31  [PluginDependency("HeuristicLab.Core-3.2")]
     32  [PluginDependency("HeuristicLab.Data-3.2")]
     33  [PluginDependency("HeuristicLab.Evolutionary-3.2")]
     34  [PluginDependency("HeuristicLab.GP-3.3")]
     35  [PluginDependency("HeuristicLab.GP.Interfaces-3.3")]
     36  [PluginDependency("HeuristicLab.GP.Operators-3.3")]
     37  [PluginDependency("HeuristicLab.Logging-3.2")]
     38  [PluginDependency("HeuristicLab.Operators-3.2")]
     39  [PluginDependency("HeuristicLab.Random-3.2")]
     40  [PluginDependency("HeuristicLab.Selection-3.2")]
     41  [PluginDependency("HeuristicLab.Selection.OffspringSelection-3.2")]
     42  [PluginDependency("HeuristicLab.SequentialEngine-3.2")]
    4343  public class HeuristicLabGpAlgorithmsPlugin : PluginBase {
    4444  }
  • trunk/sources/HeuristicLab.GP.Algorithms/3.2/OffSpringSelectionGpEditor.cs

    r2474 r2591  
    8282      IView view = OffspringSelectionGP.ProblemInjector.CreateView();
    8383      if(view != null)
    84         PluginManager.ControlManager.ShowControl(view);
     84        ControlManager.Manager.ShowControl(view);
    8585    }
    8686
     
    107107      IEngine clone = (IEngine)OffspringSelectionGP.Engine.Clone();
    108108      IEditor editor = ((IEditable)clone).CreateEditor();
    109       PluginManager.ControlManager.ShowControl(editor);
     109      ControlManager.Manager.ShowControl(editor);
    110110    }
    111111    #endregion
  • trunk/sources/HeuristicLab.GP.Algorithms/3.2/StandardGpEditor.cs

    r2474 r2591  
    8080      IView view = StandardGP.ProblemInjector.CreateView();
    8181      if(view != null)
    82         PluginManager.ControlManager.ShowControl(view);
     82        ControlManager.Manager.ShowControl(view);
    8383    }
    8484
     
    105105      IEngine clone = (IEngine)StandardGP.Engine.Clone();
    106106      IEditor editor = ((IEditable)clone).CreateEditor();
    107       PluginManager.ControlManager.ShowControl(editor);
     107      ControlManager.Manager.ShowControl(editor);
    108108    }
    109109    #endregion
Note: See TracChangeset for help on using the changeset viewer.