Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Data

  • stable/HeuristicLab.Data/3.3

  • stable/HeuristicLab.Data/3.3/Path Types/DirectoryValue.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626
    2727namespace HeuristicLab.Data {
    2828  [Item("DirectoryValue", "Represents the path to a directory.")]
    29   [StorableClass]
     29  [StorableType("AFB5A3C6-7FC8-45C6-A3B9-F3B3414A4CAB")]
    3030  public class DirectoryValue : PathValue {
    3131    [StorableConstructor]
    32     protected DirectoryValue(bool deserializing) : base(deserializing) { }
     32    protected DirectoryValue(StorableConstructorFlag _) : base(_) { }
    3333    protected DirectoryValue(DirectoryValue original, Cloner cloner) : base(original, cloner) { }
    3434    public override IDeepCloneable Clone(Cloner cloner) {
  • stable/HeuristicLab.Data/3.3/Path Types/FileValue.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626
    2727namespace HeuristicLab.Data {
    2828  [Item("FileValue", "Represents the path to a file.")]
    29   [StorableClass]
     29  [StorableType("55D686E9-29B7-41C2-8693-D1CA6E792765")]
    3030  public class FileValue : PathValue {
    3131    [Storable]
     
    4141
    4242    [StorableConstructor]
    43     protected FileValue(bool deserializing) : base(deserializing) { }
     43    protected FileValue(StorableConstructorFlag _) : base(_) { }
    4444    protected FileValue(FileValue original, Cloner cloner)
    4545      : base(original, cloner) {
  • stable/HeuristicLab.Data/3.3/Path Types/PathValue.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2323using HeuristicLab.Common;
    2424using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2626
    2727namespace HeuristicLab.Data {
    2828  [Item("PathValue", "Represents a path.")]
    29   [StorableClass]
     29  [StorableType("293B9A98-76C4-47E1-900D-67B8480BCBD6")]
    3030  public abstract class PathValue : Item {
    3131
     
    4646
    4747    [StorableConstructor]
    48     protected PathValue(bool deserializing) : base(deserializing) { }
     48    protected PathValue(StorableConstructorFlag _) : base(_) { }
    4949    protected PathValue(PathValue original, Cloner cloner)
    5050      : base(original, cloner) {
  • stable/HeuristicLab.Data/3.3/Path Types/TextFileValue.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2222using HeuristicLab.Common;
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     24using HEAL.Attic;
    2525
    2626namespace HeuristicLab.Data {
    2727  [Item("TextFile", "Represents the content and path to a text file.")]
    28   [StorableClass]
     28  [StorableType("19F5012B-6139-4113-A015-1C920A59E5AF")]
    2929  public class TextFileValue : FileValue {
    3030    [StorableConstructor]
    31     protected TextFileValue(bool deserializing) : base(deserializing) { }
     31    protected TextFileValue(StorableConstructorFlag _) : base(_) { }
    3232    protected TextFileValue(TextFileValue original, Cloner cloner)
    3333      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.