Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 13:55:04 (10 years ago)
Author:
psteiner
Message:

DataPreprocessingView + Refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs

    r10236 r10239  
    55using System.Text;
    66using HeuristicLab.Data;
     7using HeuristicLab.Core;
     8using HeuristicLab.Common;
     9using System.Drawing;
    710
    811namespace HeuristicLab.DataPreprocessing {
    9   public class DataGridContent : IDataGridContent {
     12
     13  [Item("DataGridContent", "Represents a data grid.")]
     14    public class DataGridContent : Item,IDataGridContent,IContent
     15    {
    1016    private readonly IPreprocessingData preprocessingData;
    1117   
    1218    public DataGridContent(IPreprocessingData thePreprocessingData) {
    1319      preprocessingData = thePreprocessingData;
     20    }
     21
     22    public DataGridContent(DataGridContent dataGridContent, Cloner cloner)
     23        : base(dataGridContent, cloner)
     24    {
     25
     26    }
     27
     28    public IDataGridLogic DataGridLogic { get; set; }
     29
     30    public static new Image StaticItemImage
     31    {
     32        get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
     33    }
     34
     35    public override IDeepCloneable Clone(Cloner cloner)
     36    {
     37        return new DataGridContent(this, cloner);
    1438    }
    1539
Note: See TracChangeset for help on using the changeset viewer.