Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/16 10:18:05 (8 years ago)
Author:
ascheibe
Message:

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Data/3.3/StringValue.cs

    r12012 r13656  
    3030  [StorableClass]
    3131  public class StringValue : Item, IComparable, IStringConvertibleValue {
    32     public static new Image StaticItemImage {
    33       get { return HeuristicLab.Common.Resources.VSImageLibrary.Field; }
     32    public static new Image StaticItemImage
     33    {
     34      get { return new Bitmap(25, 25); }
    3435    }
    3536
    3637    [Storable]
    3738    protected string value;
    38     public virtual string Value {
     39    public virtual string Value
     40    {
    3941      get { return value; }
    40       set {
     42      set
     43      {
    4144        if (ReadOnly) throw new NotSupportedException("Value cannot be set. StringValue is read-only.");
    4245        if (value != this.value) {
     
    5154    [Storable]
    5255    protected bool readOnly;
    53     public virtual bool ReadOnly {
     56    public virtual bool ReadOnly
     57    {
    5458      get { return readOnly; }
    5559    }
Note: See TracChangeset for help on using the changeset viewer.