Changeset 17097 for stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/IOperatorShapeInfo.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.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; } -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphVisualizationInfo.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. … … 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>(); -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShape.cs
r15584 r17097 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 -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfo.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.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) -
stable/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorShapeInfoFactory.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.
Note: See TracChangeset
for help on using the changeset viewer.