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