Last change
on this file since 10256 was
10252,
checked in by psteiner, 11 years ago
|
added logic getters ins content and constructor whicht supports logic
|
File size:
1017 bytes
|
Rev | Line | |
---|
[10245] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
| 3 | using System.Drawing;
|
---|
[10242] | 4 | using System;
|
---|
| 5 | using System.Collections.Generic;
|
---|
| 6 | using System.Linq;
|
---|
| 7 | using System.Text;
|
---|
| 8 |
|
---|
| 9 | namespace HeuristicLab.DataPreprocessing
|
---|
| 10 | {
|
---|
| 11 | [Item("StatisticsContent", "Represents the statistics grid.")]
|
---|
[10245] | 12 | class StatisticsContent : Item
|
---|
[10242] | 13 | {
|
---|
[10252] | 14 |
|
---|
| 15 | private readonly IStatisticsLogic statisticsLogic;
|
---|
| 16 | public StatisticsContent(IStatisticsLogic theStatisticsLogic)
|
---|
| 17 | {
|
---|
| 18 | statisticsLogic = theStatisticsLogic;
|
---|
| 19 | }
|
---|
| 20 |
|
---|
[10245] | 21 | public StatisticsContent(StatisticsContent content, Cloner cloner)
|
---|
| 22 | : base(content, cloner)
|
---|
| 23 | {
|
---|
| 24 |
|
---|
| 25 | }
|
---|
| 26 |
|
---|
[10252] | 27 | public IStatisticsLogic StatisticsLogic
|
---|
| 28 | {
|
---|
| 29 | get
|
---|
| 30 | {
|
---|
| 31 | return statisticsLogic;
|
---|
| 32 | }
|
---|
| 33 | }
|
---|
| 34 |
|
---|
[10245] | 35 | public static new Image StaticItemImage
|
---|
| 36 | {
|
---|
| 37 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
| 41 | {
|
---|
| 42 | return new StatisticsContent(this, cloner);
|
---|
| 43 | }
|
---|
[10242] | 44 | }
|
---|
| 45 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.