Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Data/3.3/ValueTypeValue.cs @ 17209

Last change on this file since 17209 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 2.8 KB
RevLine 
[2663]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[2663]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;
[3306]23using System.Drawing;
[3376]24using HeuristicLab.Common;
[2663]25using HeuristicLab.Core;
[16565]26using HEAL.Attic;
[2663]27
28namespace HeuristicLab.Data {
[3822]29  [Item("ValueTypeValue", "An abstract base class for representing values of value types.")]
[16565]30  [StorableType("A78FF29D-A796-463F-A93F-2528A382D99E")]
[3054]31  public abstract class ValueTypeValue<T> : Item where T : struct {
[7201]32    public static new Image StaticItemImage {
[5287]33      get { return HeuristicLab.Common.Resources.VSImageLibrary.ValueType; }
[3306]34    }
35
[2663]36    [Storable]
[3054]37    protected T value;
38    public virtual T Value {
[2663]39      get { return value; }
40      set {
[3430]41        if (ReadOnly) throw new NotSupportedException("Value cannot be set. ValueTypeValue is read-only.");
[2663]42        if (!value.Equals(this.value)) {
43          this.value = value;
[2932]44          OnValueChanged();
[2663]45        }
46      }
47    }
48
[3430]49    [Storable]
50    protected bool readOnly;
51    public virtual bool ReadOnly {
52      get { return readOnly; }
53    }
54
[4722]55    [StorableConstructor]
[16565]56    protected ValueTypeValue(StorableConstructorFlag _) : base(_) { }
[4722]57    protected ValueTypeValue(ValueTypeValue<T> original, Cloner cloner)
58      : base(original, cloner) {
59      this.value = original.value;
60      this.readOnly = original.readOnly;
61    }
[3054]62    protected ValueTypeValue() {
[2669]63      this.value = default(T);
[3430]64      this.readOnly = false;
[2663]65    }
[3054]66    protected ValueTypeValue(T value) {
[2669]67      this.value = value;
[3430]68      this.readOnly = false;
[2669]69    }
[2663]70
[3430]71    public virtual ValueTypeValue<T> AsReadOnly() {
72      ValueTypeValue<T> readOnlyValueTypeValue = (ValueTypeValue<T>)this.Clone();
73      readOnlyValueTypeValue.readOnly = true;
74      return readOnlyValueTypeValue;
75    }
76
[2663]77    public override string ToString() {
78      return value.ToString();
79    }
[2932]80
81    public event EventHandler ValueChanged;
82    protected virtual void OnValueChanged() {
83      if (ValueChanged != null)
84        ValueChanged(this, EventArgs.Empty);
85      OnToStringChanged();
86    }
[2663]87  }
88}
Note: See TracBrowser for help on using the repository browser.