Changeset 17097 for stable/HeuristicLab.Data/3.3/Path Types
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Data
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3 (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data/3.3 merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/Path Types/DirectoryValue.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Data { 28 28 [Item("DirectoryValue", "Represents the path to a directory.")] 29 [Storable Class]29 [StorableType("AFB5A3C6-7FC8-45C6-A3B9-F3B3414A4CAB")] 30 30 public class DirectoryValue : PathValue { 31 31 [StorableConstructor] 32 protected DirectoryValue( bool deserializing) : base(deserializing) { }32 protected DirectoryValue(StorableConstructorFlag _) : base(_) { } 33 33 protected DirectoryValue(DirectoryValue original, Cloner cloner) : base(original, cloner) { } 34 34 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Data/3.3/Path Types/FileValue.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Data { 28 28 [Item("FileValue", "Represents the path to a file.")] 29 [Storable Class]29 [StorableType("55D686E9-29B7-41C2-8693-D1CA6E792765")] 30 30 public class FileValue : PathValue { 31 31 [Storable] … … 41 41 42 42 [StorableConstructor] 43 protected FileValue( bool deserializing) : base(deserializing) { }43 protected FileValue(StorableConstructorFlag _) : base(_) { } 44 44 protected FileValue(FileValue original, Cloner cloner) 45 45 : base(original, cloner) { -
stable/HeuristicLab.Data/3.3/Path Types/PathValue.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Data { 28 28 [Item("PathValue", "Represents a path.")] 29 [Storable Class]29 [StorableType("293B9A98-76C4-47E1-900D-67B8480BCBD6")] 30 30 public abstract class PathValue : Item { 31 31 … … 46 46 47 47 [StorableConstructor] 48 protected PathValue( bool deserializing) : base(deserializing) { }48 protected PathValue(StorableConstructorFlag _) : base(_) { } 49 49 protected PathValue(PathValue original, Cloner cloner) 50 50 : base(original, cloner) { -
stable/HeuristicLab.Data/3.3/Path Types/TextFileValue.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Data { 27 27 [Item("TextFile", "Represents the content and path to a text file.")] 28 [Storable Class]28 [StorableType("19F5012B-6139-4113-A015-1C920A59E5AF")] 29 29 public class TextFileValue : FileValue { 30 30 [StorableConstructor] 31 protected TextFileValue( bool deserializing) : base(deserializing) { }31 protected TextFileValue(StorableConstructorFlag _) : base(_) { } 32 32 protected TextFileValue(TextFileValue original, Cloner cloner) 33 33 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.