Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/BoolArray.cs @ 3160

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

Removed Creatable test attribute (#935).

File size: 2.8 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.Text;
23using HeuristicLab.Core;
24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25
26namespace HeuristicLab.Data {
27  [Item("BoolArray", "Represents an array of boolean values.")]
28  [StorableClass]
29  public class BoolArray : ValueTypeArray<bool>, IStringConvertibleArray {
30    public BoolArray() : base() { }
31    public BoolArray(int length) : base(length) { }
32    public BoolArray(bool[] elements) : base(elements) { }
33
34    public override IDeepCloneable Clone(Cloner cloner) {
35      BoolArray clone = new BoolArray(array);
36      cloner.RegisterClonedObject(this, clone);
37      return clone;
38    }
39
40    protected virtual bool Validate(string value, out string errorMessage) {
41      bool val;
42      bool valid = bool.TryParse(value, out val);
43      errorMessage = string.Empty;
44      if (!valid) {
45        StringBuilder sb = new StringBuilder();
46        sb.Append("Invalid Value (Valid Value Format: \"");
47        sb.Append(FormatPatterns.GetBoolFormatPattern());
48        sb.Append("\")");
49        errorMessage = sb.ToString();
50      }
51      return valid;
52    }
53    protected virtual string GetValue(int index) {
54      return this[index].ToString();
55    }
56    protected virtual bool SetValue(string value, int index) {
57      bool val;
58      if (bool.TryParse(value, out val)) {
59        this[index] = val;
60        return true;
61      } else {
62        return false;
63      }
64    }
65
66    #region IStringConvertibleArray Members
67    int IStringConvertibleArray.Length {
68      get { return Length; }
69      set { Length = value; }
70    }
71    bool IStringConvertibleArray.Validate(string value, out string errorMessage) {
72      return Validate(value, out errorMessage);
73    }
74    string IStringConvertibleArray.GetValue(int index) {
75      return GetValue(index);
76    }
77    bool IStringConvertibleArray.SetValue(string value, int index) {
78      return SetValue(value, index);
79    }
80    #endregion
81  }
82}
Note: See TracBrowser for help on using the repository browser.