Changeset 11001
- Timestamp:
- 06/11/14 15:33:32 (10 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/ScatterPlotContent.cs
r10992 r11001 31 31 [Item("ScatterPlot", "Represents a scatter plot.")] 32 32 public class ScatterPlotContent : PreprocessingChartContent { 33 public static new Image StaticItemImage {34 get { return HeuristicLab.Common.Resources.VSImageLibrary.Performance; }35 }36 33 37 34 public string SelectedXVariable { get; set; } … … 47 44 this.SelectedYVariable = content.SelectedYVariable; 48 45 } 46 47 public static new Image StaticItemImage 48 { 49 get { return HeuristicLab.Common.Resources.VSImageLibrary.Performance; } 50 } 51 49 52 public override IDeepCloneable Clone(Cloner cloner) { 50 53 return new ScatterPlotContent(this, cloner); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/TransformationContent.cs
r10977 r11001 36 36 public static new Image StaticItemImage { 37 37 get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; } 38 } 38 } 39 39 40 40 public TransformationContent(IPreprocessingData data, IFilterLogic filterLogic) {
Note: See TracChangeset
for help on using the changeset viewer.