Changeset 10245
- Timestamp:
- 12/18/13 14:57:40 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10244 r10245 78 78 <ItemGroup> 79 79 <Compile Include="Implementations\DataGridLogic.cs" /> 80 <Compile Include="Implementations\FilterContent.cs" /> 80 81 <Compile Include="Implementations\FilterLogic.cs" /> 82 <Compile Include="Implementations\HistogramContent.cs" /> 81 83 <Compile Include="Implementations\HistogramLogic.cs" /> 84 <Compile Include="Implementations\LineChartContent.cs" /> 82 85 <Compile Include="Implementations\LineChartLogic.cs" /> 86 <Compile Include="Implementations\StatisticsContent.cs" /> 83 87 <Compile Include="Implementations\StatisticsLogic.cs" /> 88 <Compile Include="Implementations\TransformationContent.cs" /> 84 89 <Compile Include="Implementations\TransformationLogic.cs" /> 85 90 <Compile Include="Interfaces\IFilterLogic.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs
r10242 r10245 1 using HeuristicLab.Core; 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 2 3 using System; 3 4 using System.Collections.Generic; 5 using System.Drawing; 4 6 using System.Linq; 5 7 using System.Text; … … 8 10 { 9 11 [Item("FilterContent", "Represents the filter grid.")] 10 class FilterContent : I Item12 class FilterContent : Item 11 13 { 14 15 public FilterContent(FilterContent content, Cloner cloner) 16 : base(content, cloner) 17 { 18 19 } 20 21 public static new Image StaticItemImage 22 { 23 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; } 24 } 25 26 public override IDeepCloneable Clone(Cloner cloner) 27 { 28 return new FilterContent(this, cloner); 29 } 30 12 31 } 13 32 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs
r10242 r10245 1 using HeuristicLab.Core; 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 3 using System.Drawing; 2 4 using System; 3 5 using System.Collections.Generic; 6 4 7 using System.Linq; 5 8 using System.Text; … … 8 11 { 9 12 [Item("HistogramContent", "Represents the histogram grid.")] 10 class HistogramContent : I Item13 class HistogramContent : Item 11 14 { 15 public HistogramContent(HistogramContent content, Cloner cloner) 16 : base(content, cloner) 17 { 18 19 } 20 21 public static new Image StaticItemImage 22 { 23 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; } 24 } 25 26 public override IDeepCloneable Clone(Cloner cloner) 27 { 28 return new HistogramContent(this, cloner); 29 } 12 30 } 13 31 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs
r10242 r10245 1 using HeuristicLab.Core; 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 3 using System.Drawing; 2 4 using System; 3 5 using System.Collections.Generic; … … 8 10 { 9 11 [Item("LineChartContent", "Represents the line chart grid.")] 10 class LineChartContent : I Item12 class LineChartContent : Item 11 13 { 14 public LineChartContent(LineChartContent content, Cloner cloner) 15 : base(content, cloner) 16 { 17 18 } 19 20 public static new Image StaticItemImage 21 { 22 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; } 23 } 24 25 public override IDeepCloneable Clone(Cloner cloner) 26 { 27 return new LineChartContent(this, cloner); 28 } 12 29 } 13 30 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs
r10242 r10245 1 using HeuristicLab.Core; 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 3 using System.Drawing; 2 4 using System; 3 5 using System.Collections.Generic; … … 8 10 { 9 11 [Item("StatisticsContent", "Represents the statistics grid.")] 10 class StatisticsContent : I Item12 class StatisticsContent : Item 11 13 { 14 public StatisticsContent(StatisticsContent content, Cloner cloner) 15 : base(content, cloner) 16 { 17 18 } 19 20 public static new Image StaticItemImage 21 { 22 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; } 23 } 24 25 public override IDeepCloneable Clone(Cloner cloner) 26 { 27 return new StatisticsContent(this, cloner); 28 } 12 29 } 13 30 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs
r10242 r10245 1 using HeuristicLab.Core; 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 3 using System.Drawing; 2 4 using System; 3 5 using System.Collections.Generic; … … 8 10 { 9 11 [Item("TransformationContent", "Represents the transformation grid.")] 10 class TransformationContent : I Item12 class TransformationContent : Item 11 13 { 14 public TransformationContent(TransformationContent content, Cloner cloner) 15 : base(content, cloner) 16 { 17 18 } 19 20 public static new Image StaticItemImage 21 { 22 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; } 23 } 24 25 public override IDeepCloneable Clone(Cloner cloner) 26 { 27 return new TransformationContent(this, cloner); 28 } 12 29 } 13 30 }
Note: See TracChangeset
for help on using the changeset viewer.