Changeset 16565 for trunk/HeuristicLab.Operators.Views.GraphVisualization
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 16 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/BidirectionalLookup.cs
r15583 r16565 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 System.Collections.Generic; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Operators.Views.GraphVisualization { 27 [Storable Class]27 [StorableType("1416F47D-BEFC-4127-AC55-971099AAD93D")] 28 28 internal class BidirectionalLookup<TFirst, TSecond> { 29 29 [Storable] … … 33 33 34 34 [StorableConstructor] 35 protected BidirectionalLookup( bool deserializing) : base() { }35 protected BidirectionalLookup(StorableConstructorFlag _) { } 36 36 37 37 public BidirectionalLookup() { -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/ConnectionInfo.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfo.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IConnectionInfo.cs
r15583 r16565 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; } -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IGraphVisualizationInfo.cs
r15583 r16565 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; } -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IShapeInfo.cs
r15583 r16565 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; } -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/ShapeInfo.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/HeuristicLab.Operators.Views.GraphVisualization-3.3.csproj
r11623 r16565 11 11 <RootNamespace>HeuristicLab.Operators.Views.GraphVisualization</RootNamespace> 12 12 <AssemblyName>HeuristicLab.Operators.Views.GraphVisualization-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 105 105 </PropertyGroup> 106 106 <ItemGroup> 107 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 108 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 109 </Reference> 110 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 111 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre01\lib\netstandard2.0\HEAL.Attic.dll</HintPath> 112 </Reference> 107 113 <Reference Include="System" /> 108 114 <Reference Include="System.Core"> … … 110 116 </Reference> 111 117 <Reference Include="System.Drawing" /> 118 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 119 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 120 </Reference> 112 121 <Reference Include="System.Windows.Forms" /> 113 122 <Reference Include="System.Xml.Linq"> … … 128 137 <ItemGroup> 129 138 <None Include="HeuristicLab.snk" /> 139 <None Include="packages.config" /> 130 140 <None Include="Plugin.cs.frame" /> 131 141 <None Include="Properties\AssemblyInfo.cs.frame" /> -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/IOperatorShapeInfo.cs
r15583 r16565 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.Collections.Generic; 23 23 using System.Drawing; 24 using HEAL.Attic; 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; } -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphVisualizationInfo.cs
r15583 r16565 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. … … 27 27 using HeuristicLab.Common; 28 28 using HeuristicLab.Core; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Operators.Views.GraphVisualization { 32 [Storable Class]32 [StorableType("24376FA2-D635-4E10-85CC-FFE57C0788F9")] 33 33 public sealed class OperatorGraphVisualizationInfo : GraphVisualizationInfo { 34 34 [Storable] … … 45 45 46 46 [StorableConstructor] 47 private OperatorGraphVisualizationInfo(bool deserializing) 48 : base(deserializing) { 47 private OperatorGraphVisualizationInfo(StorableConstructorFlag _) : base(_) { 49 48 this.operatorParameterCollectionMapping = new BidirectionalLookup<IOperator, IKeyedItemCollection<string, IParameter>>(); 50 49 this.parameterOperatorMapping = new Dictionary<IParameter, IOperator>(); -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShape.cs
r15583 r16565 1 #region License Information 1 using HEAL.Attic; 2 #region License Information 2 3 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 5 * 5 6 * This file is part of HeuristicLab. … … 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 -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfo.cs
r15583 r16565 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.Drawing; 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("354155F1-6C42-42D3-99CB-9290CD11649B")] 29 29 public class OperatorShapeInfo : ShapeInfo, IOperatorShapeInfo { 30 30 [Storable] … … 37 37 38 38 [StorableConstructor] 39 protected OperatorShapeInfo( bool deserializing) : base(deserializing) { }39 protected OperatorShapeInfo(StorableConstructorFlag _) : base(_) { } 40 40 41 41 protected OperatorShapeInfo(OperatorShapeInfo original, Cloner cloner) -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfoFactory.cs
r15583 r16565 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. -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/Plugin.cs.frame
r15589 r16565 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. -
trunk/HeuristicLab.Operators.Views.GraphVisualization/3.3/Properties/AssemblyInfo.cs.frame
r15589 r16565 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.
Note: See TracChangeset
for help on using the changeset viewer.