- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/CorrelationMatrixContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 using HeuristicLab.Problems.DataAnalysis; 27 27 28 28 namespace HeuristicLab.DataPreprocessing { 29 29 [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")] 30 [Storable Class]30 [StorableType("E6B5FD30-847E-4AA5-8638-9CD166E10C22")] 31 31 public class CorrelationMatrixContent : PreprocessingContent, IViewShortcut { 32 32 public static new Image StaticItemImage { … … 63 63 64 64 [StorableConstructor] 65 protected CorrelationMatrixContent(bool deserializing) 66 : base(deserializing) { } 65 protected CorrelationMatrixContent(StorableConstructorFlag _) : base(_) { } 67 66 #endregion 68 67 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/DataCompletenessChartContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 [Item("Data Completeness Chart", "Represents a datacompleteness chart.")] 29 [Storable Class]29 [StorableType("C3709BBA-D024-482C-9D28-E15B1F2B2F54")] 30 30 public class DataCompletenessChartContent : PreprocessingContent, IViewShortcut { 31 31 public static new Image StaticItemImage { … … 46 46 47 47 [StorableConstructor] 48 protected DataCompletenessChartContent(bool deserializing) 49 : base(deserializing) { } 48 protected DataCompletenessChartContent(StorableConstructorFlag _) : base(_) { } 50 49 #endregion 51 50 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/DataGridContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.Core; 28 28 using HeuristicLab.Data; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Random; 31 31 32 32 namespace HeuristicLab.DataPreprocessing { 33 33 [Item("Data Grid", "Represents a data grid.")] 34 [Storable Class]34 [StorableType("DC6AE5CE-B0FA-4C8C-BDBB-D490C6DE4174")] 35 35 public class DataGridContent : PreprocessingContent, IStringConvertibleMatrix, IViewShortcut { 36 36 public static new Image StaticItemImage { … … 85 85 86 86 [StorableConstructor] 87 protected DataGridContent(bool deserializing) 88 : base(deserializing) { } 87 protected DataGridContent(StorableConstructorFlag _) : base(_) { } 89 88 #endregion 90 89 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/FilterContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.DataPreprocessing.Filter; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.DataPreprocessing { 31 31 [Item("Filter", "Represents the filter grid.")] 32 [Storable Class]32 [StorableType("A1676153-6E8F-48B5-8FC4-EB0E8060179D")] 33 33 public class FilterContent : PreprocessingContent, IViewShortcut { 34 34 public static new Image StaticItemImage { … … 83 83 84 84 [StorableConstructor] 85 protected FilterContent(bool deserializing) 86 : base(deserializing) { } 85 protected FilterContent(StorableConstructorFlag _) : base(_) { } 87 86 #endregion 88 87 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/HistogramContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.DataPreprocessing { 31 31 [Item("Histogram", "Represents the histogram grid.")] 32 [Storable Class]32 [StorableType("FD29EAB3-ABE6-49F4-A162-16E11790F7D5")] 33 33 public class HistogramContent : PreprocessingChartContent { 34 34 public static new Image StaticItemImage { … … 66 66 67 67 [StorableConstructor] 68 protected HistogramContent(bool deserializing) 69 : base(deserializing) { } 68 protected HistogramContent(StorableConstructorFlag _) : base(_) { } 70 69 #endregion 71 70 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/IViewShortcut.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.DataPreprocessing { 26 [StorableType("60755b48-d362-4957-94c5-cc770cc2a261")] 25 27 public interface IViewShortcut : IItem { 26 28 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/LineChartContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 [Item("Line Chart", "Represents the line chart grid.")] 29 [Storable Class]29 [StorableType("F874E5FD-27A8-471F-91D5-598392655FA4")] 30 30 public class LineChartContent : PreprocessingChartContent { 31 31 public static new Image StaticItemImage { … … 52 52 53 53 [StorableConstructor] 54 protected LineChartContent(bool deserializing) 55 : base(deserializing) { } 54 protected LineChartContent(StorableConstructorFlag _) : base(_) { } 56 55 #endregion 57 56 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/ManipulationContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.DataPreprocessing { 31 31 [Item("Manipulation", "Represents the available manipulations on a data set.")] 32 [Storable Class]32 [StorableType("42EE7A94-807F-482D-BE64-F98B05896B16")] 33 33 public class ManipulationContent : PreprocessingContent, IViewShortcut { 34 34 public static new Image StaticItemImage { … … 49 49 50 50 [StorableConstructor] 51 protected ManipulationContent(bool deserializing) 52 : base(deserializing) { } 51 protected ManipulationContent(StorableConstructorFlag _) : base(_) { } 53 52 #endregion 54 53 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/MultiScatterPlotContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 [Item("Multi Scatter Plot", "Represents a multi scatter plot.")] 29 [Storable Class]29 [StorableType("1F55FF9A-2EE3-4A5B-BEF4-8F19D9A3A54D")] 30 30 public class MultiScatterPlotContent : ScatterPlotContent { 31 31 public static new Image StaticItemImage { … … 46 46 47 47 [StorableConstructor] 48 protected MultiScatterPlotContent(bool deserializing) 49 : base(deserializing) { } 48 protected MultiScatterPlotContent(StorableConstructorFlag _) : base(_) { } 50 49 #endregion 51 50 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/PreprocessingChartContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Core; 30 30 using HeuristicLab.Data; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.DataPreprocessing { 34 34 [Item("PreprocessingChart", "Represents a preprocessing chart.")] 35 [Storable Class]35 [StorableType("7EDAFA6E-E4B1-4150-BB57-280A9F9E61D8")] 36 36 public class PreprocessingChartContent : PreprocessingContent, IViewShortcut { 37 [StorableType("d4c1c81a-f0c5-496f-8264-76b75572c0fc")] 37 38 public enum LegendOrder { 38 39 Alphabetically, … … 73 74 74 75 [StorableConstructor] 75 protected PreprocessingChartContent(bool deserializing) 76 : base(deserializing) { } 76 protected PreprocessingChartContent(StorableConstructorFlag _) : base(_) { } 77 77 #endregion 78 78 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/PreprocessingContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 [Item("PreprocessingContent", "")] 29 [Storable Class]29 [StorableType("16A5E913-08C6-4286-AD2F-4598ACB60F74")] 30 30 public abstract class PreprocessingContent : Item { 31 31 … … 43 43 44 44 [StorableConstructor] 45 protected PreprocessingContent(bool deserializing) 46 : base(deserializing) { } 45 protected PreprocessingContent(StorableConstructorFlag _) : base(_) { } 47 46 #endregion 48 47 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/ScatterPlotContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Visualization.ChartControlsExtensions; 30 30 31 31 namespace HeuristicLab.DataPreprocessing { 32 32 [Item("ScatterPlotContent", "")] 33 [Storable Class]33 [StorableType("CF1014CB-9B19-4653-AEC2-630C231D89B2")] 34 34 public abstract class ScatterPlotContent : PreprocessingChartContent { 35 35 [Storable] … … 47 47 48 48 [StorableConstructor] 49 protected ScatterPlotContent(bool deserializing) 50 : base(deserializing) { } 49 protected ScatterPlotContent(StorableConstructorFlag _) : base(_) { } 51 50 #endregion 52 51 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/SingleScatterPlotContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 [Item("Scatter Plot", "Represents a scatter plot.")] 29 [Storable Class]29 [StorableType("7DED0A9A-8999-483F-9F4E-130B7B8A0E76")] 30 30 public class SingleScatterPlotContent : ScatterPlotContent { 31 31 public static new Image StaticItemImage { … … 53 53 54 54 [StorableConstructor] 55 protected SingleScatterPlotContent(bool deserializing) 56 : base(deserializing) { } 55 protected SingleScatterPlotContent(StorableConstructorFlag _) : base(_) { } 57 56 #endregion 58 57 } -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/StatisticsContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 [Item("Statistics", "Represents the statistics grid.")] 29 [Storable Class]29 [StorableType("09B05895-BEE1-4D52-A6ED-504472D8A1FE")] 30 30 public class StatisticsContent : PreprocessingContent, IViewShortcut { 31 31 public static new Image StaticItemImage { … … 46 46 47 47 [StorableConstructor] 48 protected StatisticsContent(bool deserializing) 49 : base(deserializing) { } 48 protected StatisticsContent(StorableConstructorFlag _) : base(_) { } 50 49 #endregion 51 50 -
branches/2521_ProblemRefactoring/HeuristicLab.DataPreprocessing/3.4/Content/TransformationContent.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 using HeuristicLab.Problems.DataAnalysis; 27 27 28 28 namespace HeuristicLab.DataPreprocessing { 29 29 [Item("Transformation", "Represents the transformation grid.")] 30 [Storable Class]30 [StorableType("43EBAA29-D1FC-4187-8567-0003D88BD748")] 31 31 public class TransformationContent : PreprocessingContent, IViewShortcut { 32 32 public static new Image StaticItemImage { … … 52 52 53 53 [StorableConstructor] 54 protected TransformationContent(bool deserializing) 55 : base(deserializing) { } 54 protected TransformationContent(StorableConstructorFlag _) : base(_) { } 56 55 #endregion 57 56 }
Note: See TracChangeset
for help on using the changeset viewer.