Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Parameters/3.3/Parameter.cs @ 16462

Last change on this file since 16462 was 16462, checked in by jkarder, 5 years ago

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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 System;
23using System.Drawing;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HEAL.Fossil;
27
28namespace HeuristicLab.Parameters {
29  /// <summary>
30  /// A base class for parameters.
31  /// </summary>
32  [Item("Parameter", "A base class for parameters.")]
33  [StorableType("EB8A33BD-466A-4035-8544-8F86E5FDA458")]
34  public abstract class Parameter : NamedItem, IParameter {
35    public override Image ItemImage {
36      get {
37        if ((dataType != null) && (typeof(IOperator).IsAssignableFrom(dataType)))
38          return HeuristicLab.Common.Resources.VSImageLibrary.Method;
39        else
40          return base.ItemImage;
41      }
42    }
43    public override bool CanChangeName {
44      get { return false; }
45    }
46    public override bool CanChangeDescription {
47      get { return false; }
48    }
49
50    [Storable]
51    private Type dataType;
52    public Type DataType {
53      get { return dataType; }
54    }
55
56    [Storable(DefaultValue = false)]
57    private bool hidden;
58    public bool Hidden {
59      get { return hidden; }
60      set {
61        if (value != hidden) {
62          hidden = value;
63          OnHiddenChanged();
64        }
65      }
66    }
67
68    public IItem ActualValue {
69      get { return GetActualValue(); }
70      set { SetActualValue(value); }
71    }
72
73    [StorableConstructor]
74    protected Parameter(StorableConstructorFlag _) : base(_) {
75    }
76    protected Parameter(Parameter original, Cloner cloner)
77      : base(original, cloner) {
78      dataType = original.dataType;
79      hidden = original.hidden;
80    }
81    protected Parameter()
82      : base("Anonymous") {
83      dataType = typeof(IItem);
84      hidden = false;
85    }
86    protected Parameter(string name, Type dataType)
87      : base(name) {
88      if (dataType == null) throw new ArgumentNullException();
89      this.dataType = dataType;
90      hidden = false;
91    }
92    protected Parameter(string name, string description, Type dataType)
93      : base(name, description) {
94      if (dataType == null) throw new ArgumentNullException();
95      this.dataType = dataType;
96      hidden = false;
97    }
98
99    public override string ToString() {
100      return Name;
101    }
102
103    protected abstract IItem GetActualValue();
104    protected abstract void SetActualValue(IItem value);
105
106    public event EventHandler HiddenChanged;
107    protected virtual void OnHiddenChanged() {
108      EventHandler handler = HiddenChanged;
109      if (handler != null) handler(this, EventArgs.Empty);
110    }
111  }
112}
Note: See TracBrowser for help on using the repository browser.