Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/BidirectionalLookup.cs
r16692 r16723 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() { -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/ConnectionInfo.cs
r16692 r16723 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) { -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfo.cs
r16692 r16723 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) { -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IConnectionInfo.cs
r16692 r16723 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; } -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IGraphVisualizationInfo.cs
r16692 r16723 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; } -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/IShapeInfo.cs
r16692 r16723 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; } -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/ShapeInfo.cs
r16692 r16723 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) { -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/HeuristicLab.Operators.Views.GraphVisualization-3.3.csproj
r11623 r16723 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> … … 194 194 </BootstrapperPackage> 195 195 </ItemGroup> 196 <ItemGroup> 197 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 198 <SpecificVersion>False</SpecificVersion> 199 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 200 <Private>False</Private> 201 </Reference> 202 </ItemGroup> 196 203 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 197 204 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/IOperatorShapeInfo.cs
r16692 r16723 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; } -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphVisualizationInfo.cs
r16692 r16723 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>(); -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShape.cs
r16692 r16723 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 -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfo.cs
r16692 r16723 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) -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfoFactory.cs
r16692 r16723 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. -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/Plugin.cs.frame
r16692 r16723 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. … … 34 34 [PluginDependency("HeuristicLab.Common", "3.3")] 35 35 [PluginDependency("HeuristicLab.Core", "3.3")] 36 [PluginDependency("HeuristicLab. Persistence", "3.3")]36 [PluginDependency("HeuristicLab.Attic", "1.0")] 37 37 public class HeuristicLabOperatorsViewsGraphVisualizationPlugin : PluginBase { 38 38 } -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Views.GraphVisualization/3.3/Properties/AssemblyInfo.cs.frame
r16692 r16723 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.