Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (7 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

Location:
branches/PersistenceReintegration/HeuristicLab.Data/3.3/Path Types
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Data/3.3/Path Types/DirectoryValue.cs

    r14185 r14927  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Persistence;
    2626
    2727namespace HeuristicLab.Data {
    2828  [Item("DirectoryValue", "Represents the path to a directory.")]
    29   [StorableClass]
     29  [StorableType("15a39053-cb22-46e4-a0e2-ae943185cd2d")]
    3030  public class DirectoryValue : PathValue {
    3131    [StorableConstructor]
  • branches/PersistenceReintegration/HeuristicLab.Data/3.3/Path Types/FileValue.cs

    r14185 r14927  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Persistence;
    2626
    2727namespace HeuristicLab.Data {
    2828  [Item("FileValue", "Represents the path to a file.")]
    29   [StorableClass]
     29  [StorableType("1a541340-c1be-4382-9ced-ed7dc15e1146")]
    3030  public class FileValue : PathValue {
    3131    [Storable]
  • branches/PersistenceReintegration/HeuristicLab.Data/3.3/Path Types/PathValue.cs

    r14185 r14927  
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Persistence;
    2626
    2727namespace HeuristicLab.Data {
    2828  [Item("PathValue", "Represents a path.")]
    29   [StorableClass]
     29  [StorableType("79b1ed82-1d7c-468d-beca-93849f84122c")]
    3030  public abstract class PathValue : Item {
    3131
  • branches/PersistenceReintegration/HeuristicLab.Data/3.3/Path Types/TextFileValue.cs

    r14185 r14927  
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HeuristicLab.Persistence;
    2525
    2626namespace HeuristicLab.Data {
    2727  [Item("TextFile", "Represents the content and path to a text file.")]
    28   [StorableClass]
     28  [StorableType("6bbb4f04-e221-4948-bc81-70112352e2fa")]
    2929  public class TextFileValue : FileValue {
    3030    [StorableConstructor]
Note: See TracChangeset for help on using the changeset viewer.