Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10245 for branches


Ignore:
Timestamp:
12/18/13 14:57:40 (11 years ago)
Author:
psteiner
Message:

quick fix content classes

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  
    7878  <ItemGroup>
    7979    <Compile Include="Implementations\DataGridLogic.cs" />
     80    <Compile Include="Implementations\FilterContent.cs" />
    8081    <Compile Include="Implementations\FilterLogic.cs" />
     82    <Compile Include="Implementations\HistogramContent.cs" />
    8183    <Compile Include="Implementations\HistogramLogic.cs" />
     84    <Compile Include="Implementations\LineChartContent.cs" />
    8285    <Compile Include="Implementations\LineChartLogic.cs" />
     86    <Compile Include="Implementations\StatisticsContent.cs" />
    8387    <Compile Include="Implementations\StatisticsLogic.cs" />
     88    <Compile Include="Implementations\TransformationContent.cs" />
    8489    <Compile Include="Implementations\TransformationLogic.cs" />
    8590    <Compile Include="Interfaces\IFilterLogic.cs" />
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
    23using System;
    34using System.Collections.Generic;
     5using System.Drawing;
    46using System.Linq;
    57using System.Text;
     
    810{
    911  [Item("FilterContent", "Represents the filter grid.")]
    10   class FilterContent : IItem
     12  class FilterContent : Item
    1113  {
     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
    1231  }
    1332}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using System.Drawing;
    24using System;
    35using System.Collections.Generic;
     6
    47using System.Linq;
    58using System.Text;
     
    811{
    912  [Item("HistogramContent", "Represents the histogram grid.")]
    10   class HistogramContent : IItem
     13  class HistogramContent : Item
    1114  {
     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    }
    1230  }
    1331}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/LineChartContent.cs

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using System.Drawing;
    24using System;
    35using System.Collections.Generic;
     
    810{
    911  [Item("LineChartContent", "Represents the line chart grid.")]
    10   class LineChartContent : IItem
     12  class LineChartContent : Item
    1113  {
     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    }
    1229  }
    1330}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using System.Drawing;
    24using System;
    35using System.Collections.Generic;
     
    810{
    911  [Item("StatisticsContent", "Represents the statistics grid.")]
    10   class StatisticsContent : IItem
     12  class StatisticsContent : Item
    1113  {
     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    }
    1229  }
    1330}
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/TransformationContent.cs

    r10242 r10245  
    1 using HeuristicLab.Core;
     1using HeuristicLab.Common;
     2using HeuristicLab.Core;
     3using System.Drawing;
    24using System;
    35using System.Collections.Generic;
     
    810{
    911  [Item("TransformationContent", "Represents the transformation grid.")]
    10   class TransformationContent : IItem
     12  class TransformationContent : Item
    1113  {
     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    }
    1229  }
    1330}
Note: See TracChangeset for help on using the changeset viewer.