Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13504


Ignore:
Timestamp:
01/12/16 17:17:16 (8 years ago)
Author:
pfleck
Message:

#2559
Fixed Plugin dependencies.
Fixed Storable and NamedItem stuff.

Location:
trunk/sources
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/Plugin.cs.frame

    r13321 r13504  
    4141  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
    4242  [PluginDependency("HeuristicLab.Optimization", "3.3")]
     43  [PluginDependency("HeuristicLab.Optimizer", "3.3")]
    4344  [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")]
    4445  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Views", "3.4")]
  • trunk/sources/HeuristicLab.DataPreprocessing/3.4/Plugin.cs.frame

    r13321 r13504  
    3535  [PluginDependency("HeuristicLab.Data","3.3")]
    3636  [PluginDependency("HeuristicLab.Optimization", "3.3")]
     37  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    3738  [PluginDependency("HeuristicLab.Problems.DataAnalysis","3.4")]
    3839  public class HeuristicLabDataPreprocessingPlugin : PluginBase {
  • trunk/sources/HeuristicLab.DataPreprocessing/3.4/PreprocessingContext.cs

    r13502 r13504  
    3030namespace HeuristicLab.DataPreprocessing {
    3131  [Item("PreprocessingContext", "PreprocessingContext")]
     32  [StorableClass]
    3233  public class PreprocessingContext : NamedItem, IStorableContent {
    3334
     
    6364
    6465    public PreprocessingContext() : this(new RegressionProblemData()) { }
    65     public PreprocessingContext(IItem source) {
     66    public PreprocessingContext(IItem source)
     67      : base("PreprocessingContext") {
    6668      Import(source);
    67 
    6869    }
    6970
    7071    [StorableConstructor]
    71     private PreprocessingContext(bool deserializing)
     72    protected PreprocessingContext(bool deserializing)
    7273      : base(deserializing) { }
    7374    protected PreprocessingContext(PreprocessingContext original, Cloner cloner)
Note: See TracChangeset for help on using the changeset viewer.