#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using HeuristicLab.Core;
namespace HeuristicLab.Data {
public class ObjectData : ItemBase, IObjectData {
private object myData;
public virtual object Data {
get { return myData; }
set {
if (myData != value) {
myData = value;
OnChanged();
}
}
}
public override object Clone(IDictionary clonedObjects) {
ObjectData clone = (ObjectData)base.Clone(clonedObjects);
if (Data is IStorable)
clone.myData = Auxiliary.Clone((IStorable)Data, clonedObjects);
else if (Data is ICloneable)
clone.myData = ((ICloneable)Data).Clone();
else
throw new InvalidOperationException("contained object is not cloneable");
return clone;
}
public override bool Equals(object obj) {
IObjectData other = obj as IObjectData;
if (other != null)
return Data.Equals(other);
else
return Data.Equals(obj);
}
public override int GetHashCode() {
return Data.GetHashCode();
}
public int CompareTo(object obj) {
IComparable comparable = Data as IComparable;
if (comparable != null) {
IObjectData other = obj as IObjectData;
if (other != null)
return comparable.CompareTo(other.Data);
else
return comparable.CompareTo(obj);
}
throw new InvalidOperationException("Cannot compare as contained object doesn't implement IComparable");
}
public override string ToString() {
if (Data == null)
return "null";
else
return Data.ToString();
}
public virtual void Accept(IObjectDataVisitor visitor) {
visitor.Visit(this);
}
}
}