Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs @ 10535

Last change on this file since 10535 was 10370, checked in by rstoll, 11 years ago

Removed DataGridLogic from StatisticsView

File size: 880 bytes
Line 
1using System.Drawing;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4
5namespace HeuristicLab.DataPreprocessing {
6  [Item("Statistics", "Represents the statistics grid.")]
7  public class StatisticsContent : Item {
8
9    private readonly IStatisticsLogic statisticsLogic;
10    public StatisticsContent(IStatisticsLogic theStatisticsLogic) {
11      statisticsLogic = theStatisticsLogic;
12    }
13
14    public StatisticsContent(StatisticsContent content, Cloner cloner)
15      : base(content, cloner) {
16
17    }
18
19    public IStatisticsLogic StatisticsLogic {
20      get { return statisticsLogic; }
21    }
22
23    public static new Image StaticItemImage {
24      get { return HeuristicLab.Common.Resources.VSImageLibrary.Statistics; }
25    }
26
27    public override IDeepCloneable Clone(Cloner cloner) {
28      return new StatisticsContent(this, cloner);
29    }
30  }
31}
Note: See TracBrowser for help on using the repository browser.