Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters/3.3/ValueLookupParameter.cs @ 2793

Last change on this file since 2793 was 2793, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • replaced new EventArgs() by EventArgs.Empty
File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Collections.Generic;
24using System.Text;
25using System.Xml;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Parameters {
31  /// <summary>
32  /// A parameter whose value is either defined it the parameter itself or is retrieved from the scope.
33  /// </summary>
34  [Item("ValueLookupParameter<T>", "A parameter whose value is either defined it the parameter itself or is retrieved from or written to a scope.")]
35  public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem {
36    private T value;
37    [Storable]
38    public T Value {
39      get { return this.value; }
40      set {
41        if (value != this.value) {
42          if (this.value != null) this.value.Changed -= new ChangedEventHandler(Value_Changed);
43          this.value = value;
44          if (this.value != null) this.value.Changed += new ChangedEventHandler(Value_Changed);
45          OnValueChanged();
46        }
47      }
48    }
49
50    public ValueLookupParameter()
51      : base() {
52    }
53    public ValueLookupParameter(string name)
54      : base(name) {
55    }
56    public ValueLookupParameter(string name, T value)
57      : base(name) {
58      Value = value;
59    }
60    public ValueLookupParameter(string name, string description)
61      : base(name, description) {
62    }
63    public ValueLookupParameter(string name, string description, T value)
64      : base(name, description) {
65      Value = value;
66    }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      ValueLookupParameter<T> clone = (ValueLookupParameter<T>)base.Clone(cloner);
70      clone.Value = (T)cloner.Clone(value);
71      return clone;
72    }
73
74    public override string ToString() {
75      return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : ActualName, DataType.Name);
76    }
77
78    public event EventHandler ValueChanged;
79    private void OnValueChanged() {
80      if (ValueChanged != null)
81        ValueChanged(this, EventArgs.Empty);
82      OnChanged();
83    }
84    private void Value_Changed(object sender, ChangedEventArgs e) {
85      OnChanged(e);
86    }
87  }
88}
Note: See TracBrowser for help on using the repository browser.