1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using HeuristicLab.BioBoost.Representation;
|
---|
23 | using HeuristicLab.Common;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Data;
|
---|
26 | using HeuristicLab.Parameters;
|
---|
27 | using System;
|
---|
28 | using HEAL.Attic;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.BioBoost.Views {
|
---|
31 |
|
---|
32 | [StorableType("47A30E9B-F71A-4469-80FE-20B0978F0119")]
|
---|
33 | public class RegionDetailData : ParameterizedNamedItem {
|
---|
34 |
|
---|
35 | public override bool CanChangeName { get { return false; } }
|
---|
36 |
|
---|
37 | #region Parameters
|
---|
38 | public ValueParameter<BioBoostCompoundSolution> SolutionParameter {
|
---|
39 | get { return (ValueParameter<BioBoostCompoundSolution>) Parameters["Solution"]; }
|
---|
40 | }
|
---|
41 | public ValueParameter<StringValue> RegionNameParameter {
|
---|
42 | get { return (ValueParameter<StringValue>) Parameters["RegionName"]; }
|
---|
43 | }
|
---|
44 | #endregion
|
---|
45 |
|
---|
46 | #region Parameter Values
|
---|
47 | public BioBoostCompoundSolution Solution {
|
---|
48 | get { return SolutionParameter.Value; }
|
---|
49 | set { SolutionParameter.Value = value; }
|
---|
50 | }
|
---|
51 | public String RegionName {
|
---|
52 | get { return RegionNameParameter.Value.Value; }
|
---|
53 | set { RegionNameParameter.Value.Value = value; }
|
---|
54 | }
|
---|
55 | #endregion
|
---|
56 |
|
---|
57 | [StorableConstructor]
|
---|
58 | protected RegionDetailData(StorableConstructorFlag _) : base(_) { }
|
---|
59 | protected RegionDetailData(RegionDetailData orig, Cloner cloner) : base(orig, cloner) {}
|
---|
60 | public RegionDetailData() {
|
---|
61 | Parameters.Add(new ValueParameter<BioBoostCompoundSolution>("Solution", "The solution from which the detail should be obtained."));
|
---|
62 | Parameters.Add(new ValueParameter<StringValue>("RegionName", "The name of the region for which details show be displayed."));
|
---|
63 | }
|
---|
64 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
65 | return new RegionDetailData(this, cloner);
|
---|
66 | }
|
---|
67 |
|
---|
68 | }
|
---|
69 | }
|
---|