Changeset 677 for trunk/sources/HeuristicLab.Logging/PointXYChart.cs
- Timestamp:
- 10/17/08 10:54:57 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Logging/PointXYChart.cs
r671 r677 29 29 namespace HeuristicLab.Logging { 30 30 public class PointXYChart : ItemBase, IVisualizationItem { 31 private ItemList <ItemList<DoubleArrayData>>myValues;32 public ItemList <ItemList<DoubleArrayData>>Values {31 private ItemList myValues; 32 public ItemList Values { 33 33 get { return myValues; } 34 34 set { … … 56 56 myConnectDots = new BoolData(true); 57 57 } 58 public PointXYChart(bool connectDots,ItemList <ItemList<DoubleArrayData>>values) {58 public PointXYChart(bool connectDots,ItemList values) { 59 59 myConnectDots = new BoolData(connectDots); 60 60 myValues = values; … … 63 63 public override object Clone(IDictionary<Guid, object> clonedObjects) { 64 64 PointXYChart clone = (PointXYChart)base.Clone(clonedObjects); 65 clone.myValues = (ItemList <ItemList<DoubleArrayData>>)Auxiliary.Clone(Values, clonedObjects);65 clone.myValues = (ItemList)Auxiliary.Clone(Values, clonedObjects); 66 66 return clone; 67 67 } … … 92 92 base.Populate(node, restoredObjects); 93 93 myConnectDots = (BoolData)PersistenceManager.Restore(node.SelectSingleNode("ConnectDots"), restoredObjects); 94 myValues = (ItemList <ItemList<DoubleArrayData>>)PersistenceManager.Restore(node.SelectSingleNode("Values"), restoredObjects);94 myValues = (ItemList)PersistenceManager.Restore(node.SelectSingleNode("Values"), restoredObjects); 95 95 } 96 96 #endregion
Note: See TracChangeset
for help on using the changeset viewer.