Free cookie consent management tool by TermsFeed Policy Generator

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

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

Changed buttons to icon buttons and added icons to content elements

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