Changeset 16476 for branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization
- Timestamp:
- 01/02/19 09:22:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IConnectionInfo.cs
r16453 r16476 22 22 using System; 23 23 using HeuristicLab.Common; 24 using HEAL.Fossil; 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; } -
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IGraphVisualizationInfo.cs
r16453 r16476 24 24 using HeuristicLab.Collections; 25 25 using HeuristicLab.Common; 26 using HEAL.Fossil; 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; } -
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IShapeInfo.cs
r16453 r16476 24 24 using System.Drawing; 25 25 using HeuristicLab.Common; 26 using HEAL.Fossil; 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; } -
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/IOperatorShapeInfo.cs
r16453 r16476 22 22 using System.Collections.Generic; 23 23 using System.Drawing; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Operators.Views.GraphVisualization { 27 [StorableType("d6ae073c-ddf7-4923-abed-1b3c864ac492")] 26 28 public interface IOperatorShapeInfo : IShapeInfo { 27 29 bool Collapsed { get; set; } -
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShape.cs
r16453 r16476 1 #region License Information 1 using HEAL.Fossil; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 23 24 24 25 namespace HeuristicLab.Operators.Views.GraphVisualization { 26 [StorableType("5a5d76a6-607b-418b-9de1-e30ea3e85f58")] 25 27 internal class OperatorShape { 26 28 //21.04.2011 mkommend
Note: See TracChangeset
for help on using the changeset viewer.