[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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 |
|
---|
| 22 | using System;
|
---|
[3306] | 23 | using System.Drawing;
|
---|
[2] | 24 | using System.Text;
|
---|
[3376] | 25 | using HeuristicLab.Common;
|
---|
[2] | 26 | using HeuristicLab.Core;
|
---|
[1853] | 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2] | 28 |
|
---|
| 29 | namespace HeuristicLab.Data {
|
---|
[3048] | 30 | [Item("DoubleValue", "Represents a double value.")]
|
---|
[3017] | 31 | [StorableClass]
|
---|
[3054] | 32 | public class DoubleValue : ValueTypeValue<double>, IComparable, IStringConvertibleValue {
|
---|
[7201] | 33 | public static new Image StaticItemImage {
|
---|
[5287] | 34 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Field; }
|
---|
[3306] | 35 | }
|
---|
| 36 |
|
---|
[4722] | 37 | [StorableConstructor]
|
---|
| 38 | protected DoubleValue(bool deserializing) : base(deserializing) { }
|
---|
| 39 | protected DoubleValue(DoubleValue original, Cloner cloner)
|
---|
| 40 | : base(original, cloner) {
|
---|
| 41 | }
|
---|
[3048] | 42 | public DoubleValue() : base() { }
|
---|
| 43 | public DoubleValue(double value) : base(value) { }
|
---|
[2] | 44 |
|
---|
[2665] | 45 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4722] | 46 | return new DoubleValue(this, cloner);
|
---|
[2] | 47 | }
|
---|
[2665] | 48 |
|
---|
[2669] | 49 | public override string ToString() {
|
---|
| 50 | return Value.ToString("r"); // round-trip format
|
---|
| 51 | }
|
---|
| 52 |
|
---|
[3054] | 53 | public virtual int CompareTo(object obj) {
|
---|
[3048] | 54 | DoubleValue other = obj as DoubleValue;
|
---|
[2757] | 55 | if (other != null)
|
---|
| 56 | return Value.CompareTo(other.Value);
|
---|
| 57 | else
|
---|
| 58 | return Value.CompareTo(obj);
|
---|
| 59 | }
|
---|
| 60 |
|
---|
[3054] | 61 | protected virtual bool Validate(string value, out string errorMessage) {
|
---|
[2694] | 62 | double val;
|
---|
| 63 | bool valid = double.TryParse(value, out val);
|
---|
| 64 | errorMessage = string.Empty;
|
---|
| 65 | if (!valid) {
|
---|
| 66 | StringBuilder sb = new StringBuilder();
|
---|
| 67 | sb.Append("Invalid Value (Valid Value Format: \"");
|
---|
| 68 | sb.Append(FormatPatterns.GetDoubleFormatPattern());
|
---|
| 69 | sb.Append("\")");
|
---|
| 70 | errorMessage = sb.ToString();
|
---|
| 71 | }
|
---|
| 72 | return valid;
|
---|
[2676] | 73 | }
|
---|
[3054] | 74 | protected virtual string GetValue() {
|
---|
[2669] | 75 | return Value.ToString("r"); // round-trip format
|
---|
[2665] | 76 | }
|
---|
[3054] | 77 | protected virtual bool SetValue(string value) {
|
---|
[2694] | 78 | double val;
|
---|
| 79 | if (double.TryParse(value, out val)) {
|
---|
| 80 | Value = val;
|
---|
[2665] | 81 | return true;
|
---|
| 82 | } else {
|
---|
| 83 | return false;
|
---|
| 84 | }
|
---|
| 85 | }
|
---|
[3054] | 86 |
|
---|
| 87 | #region IStringConvertibleValue Members
|
---|
| 88 | bool IStringConvertibleValue.Validate(string value, out string errorMessage) {
|
---|
| 89 | return Validate(value, out errorMessage);
|
---|
| 90 | }
|
---|
| 91 | string IStringConvertibleValue.GetValue() {
|
---|
| 92 | return GetValue();
|
---|
| 93 | }
|
---|
| 94 | bool IStringConvertibleValue.SetValue(string value) {
|
---|
| 95 | return SetValue(value);
|
---|
| 96 | }
|
---|
[2676] | 97 | #endregion
|
---|
[2] | 98 | }
|
---|
| 99 | }
|
---|