Free cookie consent management tool by TermsFeed Policy Generator

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

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

Operator architecture refactoring (#95)

  • worked on algorithms
File size: 3.3 KB
RevLine 
[2653]1#region License Information
2/* HeuristicLab
[2790]3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2653]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;
[2756]23using HeuristicLab.Common;
[2714]24using HeuristicLab.Core;
[2653]25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
[2714]27namespace HeuristicLab.Parameters {
[2653]28  /// <summary>
[2756]29  /// A parameter whose value is either defined it the parameter itself or is retrieved from the scope.
[2653]30  /// </summary>
[2757]31  [Item("ValueLookupParameter<T>", "A parameter whose value is either defined it the parameter itself or is retrieved from or written to a scope.")]
[2773]32  public class ValueLookupParameter<T> : LookupParameter<T>, IValueLookupParameter<T> where T : class, IItem {
[2756]33    private T value;
[2653]34    [Storable]
[2756]35    public T Value {
36      get { return this.value; }
[2653]37      set {
[2756]38        if (value != this.value) {
39          if (this.value != null) this.value.Changed -= new ChangedEventHandler(Value_Changed);
40          this.value = value;
41          if (this.value != null) this.value.Changed += new ChangedEventHandler(Value_Changed);
42          OnValueChanged();
[2653]43        }
44      }
45    }
[2796]46    IItem IValueParameter.Value {
47      get { return Value; }
48      set {
49        T val = value as T;
[2852]50        if ((value != null) && (val == null))
[2796]51          throw new InvalidOperationException(
52            string.Format("Type mismatch. Value is not a \"{0}\".",
53                          typeof(T).GetPrettyName())
54          );
55        Value = val;
56      }
57    }
[2653]58
[2756]59    public ValueLookupParameter()
[2773]60      : base() {
[2653]61    }
[2756]62    public ValueLookupParameter(string name)
[2773]63      : base(name) {
[2756]64    }
65    public ValueLookupParameter(string name, T value)
[2773]66      : base(name) {
[2756]67      Value = value;
68    }
69    public ValueLookupParameter(string name, string description)
[2773]70      : base(name, description) {
[2653]71    }
[2756]72    public ValueLookupParameter(string name, string description, T value)
[2773]73      : base(name, description) {
[2756]74      Value = value;
[2653]75    }
76
[2740]77    public override IDeepCloneable Clone(Cloner cloner) {
[2756]78      ValueLookupParameter<T> clone = (ValueLookupParameter<T>)base.Clone(cloner);
79      clone.Value = (T)cloner.Clone(value);
[2740]80      return clone;
81    }
82
83    public override string ToString() {
[2818]84      return string.Format("{0}: {1} ({2})", Name, Value != null ? Value.ToString() : ActualName, DataType.GetPrettyName());
[2740]85    }
86
[2756]87    public event EventHandler ValueChanged;
88    private void OnValueChanged() {
89      if (ValueChanged != null)
[2793]90        ValueChanged(this, EventArgs.Empty);
[2653]91      OnChanged();
92    }
[2756]93    private void Value_Changed(object sender, ChangedEventArgs e) {
[2653]94      OnChanged(e);
95    }
96  }
97}
Note: See TracBrowser for help on using the repository browser.