- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/ConnectionInfo.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 System.Linq; 24 24 using HeuristicLab.Common; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Operators.Views.GraphVisualization { 28 [Storable Class]28 [StorableType("92043EDD-87B0-42E9-A66F-230CC955C6D3")] 29 29 public class ConnectionInfo : DeepCloneable, IConnectionInfo { 30 30 [StorableConstructor] 31 protected ConnectionInfo( bool deserializing) : base() { }31 protected ConnectionInfo(StorableConstructorFlag _) { } 32 32 protected ConnectionInfo(ConnectionInfo original, Cloner cloner) 33 33 : base(original, cloner) { -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfo.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. … … 25 25 using HeuristicLab.Collections; 26 26 using HeuristicLab.Common; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Operators.Views.GraphVisualization { 30 [Storable Class]30 [StorableType("85B8035F-C25D-4C75-A2A2-21230A08E9B2")] 31 31 public class GraphVisualizationInfo : DeepCloneable, IGraphVisualizationInfo { 32 32 [StorableConstructor] 33 protected GraphVisualizationInfo( bool deserializing) : base() { }33 protected GraphVisualizationInfo(StorableConstructorFlag _) { } 34 34 protected GraphVisualizationInfo(GraphVisualizationInfo original, Cloner cloner) 35 35 : base(original, cloner) { -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IConnectionInfo.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 System; 23 23 using HeuristicLab.Common; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Operators.Views.GraphVisualization { 27 [StorableType("3cdcae5a-9f9f-4b99-bcd7-cc9619a547d8")] 26 28 public interface IConnectionInfo : IDeepCloneable { 27 29 IShapeInfo From { get; } -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IGraphVisualizationInfo.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. … … 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HEAL.Attic; 26 27 27 28 namespace HeuristicLab.Operators.Views.GraphVisualization { 29 [StorableType("d6df3b9d-453c-4f85-ae4b-76c3cbcc304c")] 28 30 public interface IGraphVisualizationInfo : IDeepCloneable, IContent { 29 31 IShapeInfo InitialShape { get; set; } -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IShapeInfo.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. … … 24 24 using System.Drawing; 25 25 using HeuristicLab.Common; 26 using HEAL.Attic; 26 27 27 28 namespace HeuristicLab.Operators.Views.GraphVisualization { 29 [StorableType("a4ab29fa-705b-4a49-8ca2-86a18b40de12")] 28 30 public interface IShapeInfo : IDeepCloneable { 29 31 Point Location { get; set; } -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/ShapeInfo.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. … … 24 24 using System.Drawing; 25 25 using HeuristicLab.Common; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Operators.Views.GraphVisualization { 29 [Storable Class]29 [StorableType("330945A7-D7AF-42B9-91D2-06C1B00BC078")] 30 30 public abstract class ShapeInfo : DeepCloneable, IShapeInfo { 31 31 [StorableConstructor] 32 protected ShapeInfo( bool deserializing) : base() { }32 protected ShapeInfo(StorableConstructorFlag _) { } 33 33 protected ShapeInfo(ShapeInfo original, Cloner cloner) 34 34 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.