- Timestamp:
- 05/28/14 15:29:38 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/CorrelationMatrixContent.cs
r10908 r10914 28 28 29 29 [Item("Feature Correlation Matrix", "Represents the feature correlation matrix.")] 30 public class CorrelationMatrixContent : Item, IViewShortcut 31 { 30 public class CorrelationMatrixContent : Item, IViewShortcut { 32 31 public DataAnalysisProblemData ProblemData { get; set; } 33 32 … … 38 37 public CorrelationMatrixContent(CorrelationMatrixContent original, Cloner cloner) 39 38 : base(original, cloner) { 40 39 41 40 } 42 41 43 42 public static new Image StaticItemImage { 44 43 get { return HeuristicLab.Common.Resources.VSImageLibrary.Gradient; } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10908 r10914 30 30 private int classifierVariableIndex = 0; 31 31 32 public HistogramContent(IChartLogic chartlogic) :base(chartlogic) { 32 public HistogramContent(IChartLogic chartlogic) 33 : base(chartlogic) { 33 34 AllInOneMode = false; 34 35 } … … 38 39 } 39 40 40 public int ClassifierVariableIndex 41 { 41 public int ClassifierVariableIndex { 42 42 get { return this.classifierVariableIndex; } 43 43 set { this.classifierVariableIndex = value; }
Note: See TracChangeset
for help on using the changeset viewer.