- Timestamp:
- 07/31/09 12:31:32 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-Refactoring-713/sources/HeuristicLab.GP.Boolean/3.3/Symbols/VariableFunctionTree.cs
r2216 r2218 24 24 using HeuristicLab.Data; 25 25 using HeuristicLab.GP.Interfaces; 26 using System.Xml; 26 27 27 28 namespace HeuristicLab.GP.Boolean { … … 58 59 } 59 60 60 public override IFunctionTreeClone() {61 public override object Clone() { 61 62 return new VariableFunctionTree(this); 63 } 64 65 public override XmlNode GetXmlNode(string name, XmlDocument document, IDictionary<System.Guid, IStorable> persistedObjects) { 66 XmlNode node = base.GetXmlNode(name, document, persistedObjects); 67 XmlAttribute varAttr = document.CreateAttribute("Variable"); 68 varAttr.Value = VariableName; 69 node.Attributes.Append(varAttr); 70 return node; 71 } 72 73 public override void Populate(XmlNode node, IDictionary<System.Guid, IStorable> restoredObjects) { 74 base.Populate(node, restoredObjects); 75 VariableName = node.Attributes["Variable"].Value; 62 76 } 63 77
Note: See TracChangeset
for help on using the changeset viewer.