Changeset 16956 for branches/2457_ExpertSystem/HeuristicLab.Analysis/3.3/DataVisualization/GanttData.cs
- Timestamp:
- 05/15/19 13:36:51 (6 years ago)
- Location:
- branches/2457_ExpertSystem/HeuristicLab.Analysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2457_ExpertSystem/HeuristicLab.Analysis
- Property svn:mergeinfo changed
-
branches/2457_ExpertSystem/HeuristicLab.Analysis/3.3/DataVisualization/GanttData.cs
r16075 r16956 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Common; 30 30 using HeuristicLab.Core; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 33 33 namespace HeuristicLab.Analysis { 34 34 [Item("Gantt Data", "Data of a Gantt visualization")] 35 [Storable Class]35 [StorableType("5EF715EE-23B7-416D-85D0-28C61F81C55D")] 36 36 public class GanttData : NamedItem { 37 37 … … 45 45 46 46 [StorableConstructor] 47 protected GanttData( bool deserializing) : base(deserializing) {}47 protected GanttData(StorableConstructorFlag _) : base(_) { } 48 48 protected GanttData(GanttData original, Cloner cloner) 49 49 : base(original, cloner) { … … 70 70 71 71 [Item("Gantt Row", "Row of a Gantt chart")] 72 [Storable Class]72 [StorableType("DDAA9C4C-CE19-4E0D-9AB2-02F8CDF2B8D4")] 73 73 public class GanttRow : NamedItem { 74 74 [Storable] … … 77 77 78 78 [StorableConstructor] 79 protected GanttRow( bool deserializing) : base(deserializing) {}79 protected GanttRow(StorableConstructorFlag _) : base(_) { } 80 80 protected GanttRow(GanttRow original, Cloner cloner) 81 81 : base(original, cloner) { … … 99 99 100 100 [Item("Gantt Item", "Item of a Gantt chart row")] 101 [Storable Class]101 [StorableType("E2CEFEAE-AEA4-4F1D-94D5-D7AA784982F5")] 102 102 public class GanttItem : Item, INotifyPropertyChanged { 103 103 … … 158 158 159 159 [StorableConstructor] 160 protected GanttItem( bool deserializing) : base(deserializing) { }160 protected GanttItem(StorableConstructorFlag _) : base(_) { } 161 161 protected GanttItem(GanttItem original, Cloner cloner) 162 162 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.