Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Data/3.3/ValueTypeValue.cs @ 13656

Last change on this file since 13656 was 13656, checked in by ascheibe, 8 years ago

#2582 created branch for Hive Web Job Manager

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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 static new Image StaticItemImage
33    {
34      get { return new Bitmap(25, 25); }
35    }
36
37    [Storable]
38    protected T value;
39    public virtual T Value
40    {
41      get { return value; }
42      set
43      {
44        if (ReadOnly) throw new NotSupportedException("Value cannot be set. ValueTypeValue is read-only.");
45        if (!value.Equals(this.value)) {
46          this.value = value;
47          OnValueChanged();
48        }
49      }
50    }
51
52    [Storable]
53    protected bool readOnly;
54    public virtual bool ReadOnly
55    {
56      get { return readOnly; }
57    }
58
59    [StorableConstructor]
60    protected ValueTypeValue(bool deserializing) : base(deserializing) { }
61    protected ValueTypeValue(ValueTypeValue<T> original, Cloner cloner)
62      : base(original, cloner) {
63      this.value = original.value;
64      this.readOnly = original.readOnly;
65    }
66    protected ValueTypeValue() {
67      this.value = default(T);
68      this.readOnly = false;
69    }
70    protected ValueTypeValue(T value) {
71      this.value = value;
72      this.readOnly = false;
73    }
74
75    public virtual ValueTypeValue<T> AsReadOnly() {
76      ValueTypeValue<T> readOnlyValueTypeValue = (ValueTypeValue<T>)this.Clone();
77      readOnlyValueTypeValue.readOnly = true;
78      return readOnlyValueTypeValue;
79    }
80
81    public override string ToString() {
82      return value.ToString();
83    }
84
85    public event EventHandler ValueChanged;
86    protected virtual void OnValueChanged() {
87      if (ValueChanged != null)
88        ValueChanged(this, EventArgs.Empty);
89      OnToStringChanged();
90    }
91  }
92}
Note: See TracBrowser for help on using the repository browser.