Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/HistogramContent.cs @ 10303

Last change on this file since 10303 was 10303, checked in by aesterer, 10 years ago

Added empty views classes; Inserted view items into data preprocessing view

File size: 1010 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Core;
3using System.Drawing;
4using System;
5using System.Collections.Generic;
6
7using System.Linq;
8using System.Text;
9
10namespace HeuristicLab.DataPreprocessing
11{
12  [Item("HistogramContent", "Represents the histogram grid.")]
13  public class HistogramContent : Item
14  {
15
16    private readonly IHistogramLogic histogramLogic;
17    public HistogramContent(IHistogramLogic theHistogramLogic)
18    {
19      histogramLogic = theHistogramLogic;
20    }
21
22    public HistogramContent(HistogramContent content, Cloner cloner)
23      : base(content, cloner)
24    {
25
26    }
27
28    public IHistogramLogic HistogramLogic
29    {
30      get
31      {
32        return histogramLogic;
33      }
34    }
35
36    public static new Image StaticItemImage
37    {
38      get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
39    }
40
41    public override IDeepCloneable Clone(Cloner cloner)
42    {
43      return new HistogramContent(this, cloner);
44    }
45  }
46}
Note: See TracBrowser for help on using the repository browser.