Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost.Views/3.3/RegionDetailData.cs @ 13074

Last change on this file since 13074 was 13074, checked in by gkronber, 9 years ago

#2499: added license header and removed unused usings

File size: 2.6 KB
Line 
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
22using HeuristicLab.BioBoost.Representation;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using System;
29
30namespace HeuristicLab.BioBoost.Views {
31
32  [StorableClass]
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(bool isDeserializing) : base(isDeserializing) {}
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}
Note: See TracBrowser for help on using the repository browser.