return node;
}
public void loadXml(XmlNode node) {
if (!XML_NODE_NAME.equals(node.getName()))
throw new XmlException("Cannot read node");
String[] dataPieces;
String seenData, ownedData;
XmlNode seen = node.getChildren("seen").get(0);
XmlNode owned = node.getChildren("owned").get(0);