Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters/3.3/Parameter.cs @ 9456

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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 HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Parameters {
29  /// <summary>
30  /// A base class for parameters.
31  /// </summary>
32  [Item("Parameter", "A base class for parameters.")]
33  [StorableClass]
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(bool deserializing)
75      : base(deserializing) {
76    }
77    protected Parameter(Parameter original, Cloner cloner)
78      : base(original, cloner) {
79      dataType = original.dataType;
80      hidden = original.hidden;
81    }
82    protected Parameter()
83      : base("Anonymous") {
84      dataType = typeof(IItem);
85      hidden = false;
86    }
87    protected Parameter(string name, Type dataType)
88      : base(name) {
89      if (dataType == null) throw new ArgumentNullException();
90      this.dataType = dataType;
91      hidden = false;
92    }
93    protected Parameter(string name, string description, Type dataType)
94      : base(name, description) {
95      if (dataType == null) throw new ArgumentNullException();
96      this.dataType = dataType;
97      hidden = false;
98    }
99
100    public override string ToString() {
101      return Name;
102    }
103
104    protected abstract IItem GetActualValue();
105    protected abstract void SetActualValue(IItem value);
106
107    public event EventHandler HiddenChanged;
108    protected virtual void OnHiddenChanged() {
109      EventHandler handler = HiddenChanged;
110      if (handler != null) handler(this, EventArgs.Empty);
111    }
112  }
113}
Note: See TracBrowser for help on using the repository browser.