Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/DoubleValue.cs @ 4485

Last change on this file since 4485 was 4477, checked in by gkronber, 14 years ago

Merged r4458, r4459,r4462,r4464 from data analysis exploration branch into trunk. #1142

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