- Timestamp:
- 01/08/14 16:24:17 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs
r10312 r10313 7 7 namespace HeuristicLab.DataPreprocessing { 8 8 9 [Item("DataGrid Content", "Represents a data grid.")]9 [Item("DataGrid", "Represents a data grid.")] 10 10 public class DataGridContent : Item, IDataGridContent, IContent { 11 11 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs
r10303 r10313 9 9 namespace HeuristicLab.DataPreprocessing 10 10 { 11 [Item("Filter Content", "Represents the filter grid.")]11 [Item("Filter", "Represents the filter grid.")] 12 12 public class FilterContent : Item 13 13 { 14 15 public static new Image StaticItemImage { 16 get { return HeuristicLab.Common.Resources.VSImageLibrary.Filter; } 17 } 14 18 15 19 private readonly IFilterLogic filterLogic; … … 32 36 } 33 37 34 public static new Image StaticItemImage35 {36 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }37 }38 39 38 public override IDeepCloneable Clone(Cloner cloner) 40 39 { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10303 r10313 10 10 namespace HeuristicLab.DataPreprocessing 11 11 { 12 [Item("Histogram Content", "Represents the histogram grid.")]12 [Item("Histogram", "Represents the histogram grid.")] 13 13 public class HistogramContent : Item 14 14 { … … 36 36 public static new Image StaticItemImage 37 37 { 38 get { return HeuristicLab.Common.Resources.VSImageLibrary. Table; }38 get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; } 39 39 } 40 40 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs
r10303 r10313 9 9 namespace HeuristicLab.DataPreprocessing 10 10 { 11 [Item("LineChart Content", "Represents the line chart grid.")]11 [Item("LineChart", "Represents the line chart grid.")] 12 12 public class LineChartContent : Item 13 13 { … … 35 35 public static new Image StaticItemImage 36 36 { 37 get { return HeuristicLab.Common.Resources.VSImageLibrary. Table; }37 get { return HeuristicLab.Common.Resources.VSImageLibrary.PieChart; } 38 38 } 39 39 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs
r10303 r10313 9 9 namespace HeuristicLab.DataPreprocessing 10 10 { 11 [Item("Statistics Content", "Represents the statistics grid.")]11 [Item("Statistics", "Represents the statistics grid.")] 12 12 public class StatisticsContent : Item 13 13 { … … 35 35 public static new Image StaticItemImage 36 36 { 37 get { return HeuristicLab.Common.Resources.VSImageLibrary. Table; }37 get { return HeuristicLab.Common.Resources.VSImageLibrary.Statistics; } 38 38 } 39 39 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs
r10303 r10313 9 9 namespace HeuristicLab.DataPreprocessing 10 10 { 11 [Item("Transformation Content", "Represents the transformation grid.")]11 [Item("Transformation", "Represents the transformation grid.")] 12 12 public class TransformationContent : Item 13 13 { … … 35 35 public static new Image StaticItemImage 36 36 { 37 get { return HeuristicLab.Common.Resources.VSImageLibrary. Table; }37 get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; } 38 38 } 39 39
Note: See TracChangeset
for help on using the changeset viewer.