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 | |
---|
1 | using System.Drawing;
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 |
|
---|
5 | namespace 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.