Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/26/10 05:14:51 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • continued work on adapting and refactoring HeuristicLab.Data according to the changes in HeuristicLab.Core
  • started work on adapting and refactoring HeuristicLab.Operators according to changes in HeuristicLab.Core
Location:
trunk/sources/HeuristicLab.Data/3.3
Files:
6 edited

Legend:

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

    r2676 r2684  
    2929namespace HeuristicLab.Data {
    3030  [EmptyStorableClass]
    31   [Item("Boolean", "Represents a boolean value.")]
     31  [Item("BoolData", "Represents a boolean value.")]
    3232  [Creatable("Test")]
    3333  public sealed class BoolData : ValueTypeData<bool>, IStringConvertibleData {
  • trunk/sources/HeuristicLab.Data/3.3/DateTimeData.cs

    r2676 r2684  
    2929namespace HeuristicLab.Data {
    3030  [EmptyStorableClass]
    31   [Item("DateTime", "Represents a date and time value.")]
     31  [Item("DateTimeData", "Represents a date and time value.")]
    3232  [Creatable("Test")]
    3333  public sealed class DateTimeData : ValueTypeData<DateTime>, IStringConvertibleData {
  • trunk/sources/HeuristicLab.Data/3.3/DoubleData.cs

    r2676 r2684  
    2929namespace HeuristicLab.Data {
    3030  [EmptyStorableClass]
    31   [Item("Double", "Represents a double value.")]
     31  [Item("DoubleData", "Represents a double value.")]
    3232  [Creatable("Test")]
    3333  public sealed class DoubleData : ValueTypeData<double>, IStringConvertibleData {
  • trunk/sources/HeuristicLab.Data/3.3/IntData.cs

    r2676 r2684  
    2929namespace HeuristicLab.Data {
    3030  [EmptyStorableClass]
    31   [Item("Integer", "Represents an integer value.")]
     31  [Item("IntData", "Represents an integer value.")]
    3232  [Creatable("Test")]
    3333  public sealed class IntData : ValueTypeData<int>, IStringConvertibleData {
  • trunk/sources/HeuristicLab.Data/3.3/StringData.cs

    r2676 r2684  
    2929namespace HeuristicLab.Data {
    3030  [EmptyStorableClass]
    31   [Item("String", "Represents a string.")]
     31  [Item("StringData", "Represents a string.")]
    3232  [Creatable("Test")]
    3333  public sealed class StringData : Item, IStringConvertibleData {
  • trunk/sources/HeuristicLab.Data/3.3/TimeSpanData.cs

    r2676 r2684  
    2929namespace HeuristicLab.Data {
    3030  [EmptyStorableClass]
    31   [Item("TimeSpan", "Represents a duration of time.")]
     31  [Item("TimeSpanData", "Represents a duration of time.")]
    3232  [Creatable("Test")]
    3333  public sealed class TimeSpanData : ValueTypeData<TimeSpan>, IStringConvertibleData {
Note: See TracChangeset for help on using the changeset viewer.