Last change
on this file since 10303 was
10303,
checked in by aesterer, 11 years ago
|
Added empty views classes; Inserted view items into data preprocessing view
|
File size:
1009 bytes
|
Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using System.Drawing;
|
---|
4 | using System;
|
---|
5 | using System.Collections.Generic;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 |
|
---|
9 | namespace HeuristicLab.DataPreprocessing
|
---|
10 | {
|
---|
11 | [Item("LineChartContent", "Represents the line chart grid.")]
|
---|
12 | public class LineChartContent : Item
|
---|
13 | {
|
---|
14 |
|
---|
15 | private readonly ILineChartLogic lineChartLogic;
|
---|
16 | public LineChartContent(ILineChartLogic theLineChartLogic)
|
---|
17 | {
|
---|
18 | lineChartLogic = theLineChartLogic;
|
---|
19 | }
|
---|
20 |
|
---|
21 | public LineChartContent(LineChartContent content, Cloner cloner)
|
---|
22 | : base(content, cloner)
|
---|
23 | {
|
---|
24 |
|
---|
25 | }
|
---|
26 |
|
---|
27 | public ILineChartLogic LineChartLogic
|
---|
28 | {
|
---|
29 | get
|
---|
30 | {
|
---|
31 | return lineChartLogic;
|
---|
32 | }
|
---|
33 | }
|
---|
34 |
|
---|
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 LineChartContent(this, cloner);
|
---|
43 | }
|
---|
44 | }
|
---|
45 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.