Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/10 04:53:48 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893).

Location:
trunk/sources/HeuristicLab.Data/3.3
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/BoolValue.cs

    r3160 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using System.Text;
    2425using HeuristicLab.Core;
     
    2930  [StorableClass]
    3031  public class BoolValue : ValueTypeValue<bool>, IComparable, IStringConvertibleValue {
     32    public override Image ItemImage {
     33      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Field; }
     34    }
     35
    3136    public BoolValue() : base() { }
    3237    public BoolValue(bool value) : base(value) { }
  • trunk/sources/HeuristicLab.Data/3.3/Comparison.cs

    r3160 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    2829  [StorableClass]
    2930  public class Comparison : ValueTypeValue<ComparisonType>, IComparable {
     31    public override Image ItemImage {
     32      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Enum; }
     33    }
     34
    3035    public Comparison() : base() { }
    3136    public Comparison(ComparisonType value) : base(value) { }
  • trunk/sources/HeuristicLab.Data/3.3/DoubleValue.cs

    r3160 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using System.Text;
    2425using HeuristicLab.Core;
     
    2930  [StorableClass]
    3031  public class DoubleValue : ValueTypeValue<double>, IComparable, IStringConvertibleValue {
     32    public override Image ItemImage {
     33      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Field; }
     34    }
     35
    3136    public DoubleValue() : base() { }
    3237    public DoubleValue(double value) : base(value) { }
  • trunk/sources/HeuristicLab.Data/3.3/HeuristicLab.Data-3.3.csproj

    r3095 r3306  
    9595    </Reference>
    9696    <Reference Include="System.Data" />
     97    <Reference Include="System.Drawing" />
    9798    <Reference Include="System.Xml" />
    9899  </ItemGroup>
  • trunk/sources/HeuristicLab.Data/3.3/IntValue.cs

    r3160 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using System.Text;
    2425using HeuristicLab.Core;
     
    2930  [StorableClass]
    3031  public class IntValue : ValueTypeValue<int>, IComparable, IStringConvertibleValue {
     32    public override Image ItemImage {
     33      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Field; }
     34    }
     35
    3136    public IntValue() : base() { }
    3237    public IntValue(int value) : base(value) { }
  • trunk/sources/HeuristicLab.Data/3.3/StringArray.cs

    r3263 r3306  
    2323using System.Linq;
    2424using System.Collections;
     25using System.Drawing;
    2526using System.Text;
    2627using HeuristicLab.Common;
     
    3334  [StorableClass]
    3435  public class StringArray : Item, IEnumerable<string>, IStringConvertibleArray {
     36    public override Image ItemImage {
     37      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
     38    }
     39
    3540    [Storable]
    3641    protected string[] array;
  • trunk/sources/HeuristicLab.Data/3.3/StringMatrix.cs

    r3160 r3306  
    2222using System;
    2323using System.Collections;
     24using System.Drawing;
    2425using System.Text;
    2526using HeuristicLab.Common;
     
    3132  [StorableClass]
    3233  public class StringMatrix : Item, IEnumerable, IStringConvertibleMatrix {
     34    public override Image ItemImage {
     35      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
     36    }
     37
    3338    [Storable]
    3439    protected string[,] matrix;
  • trunk/sources/HeuristicLab.Data/3.3/StringValue.cs

    r3160 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    2829  [StorableClass]
    2930  public class StringValue : Item, IComparable, IStringConvertibleValue {
     31    public override Image ItemImage {
     32      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Field; }
     33    }
     34
    3035    [Storable]
    3136    protected string value;
  • trunk/sources/HeuristicLab.Data/3.3/ValueTypeArray.cs

    r3054 r3306  
    2222using System;
    2323using System.Collections;
     24using System.Drawing;
    2425using System.Text;
    2526using HeuristicLab.Common;
     
    3132  [StorableClass]
    3233  public abstract class ValueTypeArray<T> : Item, IEnumerable where T : struct {
     34    public override Image ItemImage {
     35      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
     36    }
     37
    3338    [Storable]
    3439    protected T[] array;
  • trunk/sources/HeuristicLab.Data/3.3/ValueTypeMatrix.cs

    r3054 r3306  
    2222using System;
    2323using System.Collections;
     24using System.Drawing;
    2425using System.Text;
    2526using HeuristicLab.Common;
     
    3132  [StorableClass]
    3233  public abstract class ValueTypeMatrix<T> : Item, IEnumerable where T : struct {
     34    public override Image ItemImage {
     35      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }
     36    }
     37
    3338    [Storable]
    3439    protected T[,] matrix;
  • trunk/sources/HeuristicLab.Data/3.3/ValueTypeValue.cs

    r3054 r3306  
    2121
    2222using System;
     23using System.Drawing;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    2829  [StorableClass]
    2930  public abstract class ValueTypeValue<T> : Item where T : struct {
     31    public override Image ItemImage {
     32      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.ValueType; }
     33    }
     34
    3035    [Storable]
    3136    protected T value;
Note: See TracChangeset for help on using the changeset viewer.