Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Data/3.3/ValueTypeValue.cs @ 3838

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

Implemented reviewers' comments (#863)

  • adapted item names of generic items to reflect the type of their generic parameters
File size: 2.7 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.Drawing;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Data {
29  [Item("ValueTypeValue", "An abstract base class for representing values of value types.")]
30  [StorableClass]
31  public abstract class ValueTypeValue<T> : Item where T : struct {
32    public override Image ItemImage {
33      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.ValueType; }
34    }
35
36    [Storable]
37    protected T value;
38    public virtual T Value {
39      get { return value; }
40      set {
41        if (ReadOnly) throw new NotSupportedException("Value cannot be set. ValueTypeValue is read-only.");
42        if (!value.Equals(this.value)) {
43          this.value = value;
44          OnValueChanged();
45        }
46      }
47    }
48
49    [Storable]
50    protected bool readOnly;
51    public virtual bool ReadOnly {
52      get { return readOnly; }
53    }
54
55    protected ValueTypeValue() {
56      this.value = default(T);
57      this.readOnly = false;
58    }
59    protected ValueTypeValue(T value) {
60      this.value = value;
61      this.readOnly = false;
62    }
63
64    public override IDeepCloneable Clone(Cloner cloner) {
65      ValueTypeValue<T> clone = (ValueTypeValue<T>)base.Clone(cloner);
66      clone.value = value;
67      clone.readOnly = readOnly;
68      return clone;
69    }
70
71    public virtual ValueTypeValue<T> AsReadOnly() {
72      ValueTypeValue<T> readOnlyValueTypeValue = (ValueTypeValue<T>)this.Clone();
73      readOnlyValueTypeValue.readOnly = true;
74      return readOnlyValueTypeValue;
75    }
76
77    public override string ToString() {
78      return value.ToString();
79    }
80
81    public event EventHandler ValueChanged;
82    protected virtual void OnValueChanged() {
83      if (ValueChanged != null)
84        ValueChanged(this, EventArgs.Empty);
85      OnToStringChanged();
86    }
87  }
88}
Note: See TracBrowser for help on using the repository browser.