Uses of Class
mud.common.xml.XmlElement

Packages that use XmlElement
mud.common.items   
mud.common.objects   
mud.common.room   
mud.common.xml   
 

Uses of XmlElement in mud.common.items
 

Methods in mud.common.items that return XmlElement
 XmlElement Item.toXml()
           
 

Uses of XmlElement in mud.common.objects
 

Methods in mud.common.objects that return XmlElement
 XmlElement Inventory.toXml()
           
 XmlElement GameObject.toXml()
           
 

Uses of XmlElement in mud.common.room
 

Methods in mud.common.room that return XmlElement
 XmlElement Room.toXml()
           
 XmlElement GameTile.toXml()
           
 

Uses of XmlElement in mud.common.xml
 

Methods in mud.common.xml that return XmlElement
 XmlElement XmlElement.addChild(int index, java.lang.String tagName)
           
 XmlElement XmlElement.addChild(int index, java.lang.String tagName, long textContents)
           
 XmlElement XmlElement.addChild(int index, java.lang.String tagName, java.lang.String textContents)
           
 XmlElement XmlElement.addChild(int index, XmlElement element)
           
 XmlElement XmlElement.addChild(java.lang.String tagName)
           
 XmlElement XmlElement.addChild(java.lang.String tagName, boolean textContents)
           
 XmlElement XmlElement.addChild(java.lang.String tagName, double textContents)
           
 XmlElement XmlElement.addChild(java.lang.String tagName, long textContents)
           
 XmlElement XmlElement.addChild(java.lang.String tagName, java.lang.String textContents)
           
 XmlElement XmlElement.addChild(XmlElement element)
           
 XmlElement XmlElement.getChild(java.lang.String tagName)
           
 XmlElement XmlElement.getFirstElementChild()
           
 XmlElement XmlFile.getRoot()
           
 XmlElement XmlReader.read(java.io.File file)
           
 XmlElement XmlReader.read(java.io.InputStream in)
           
 

Methods in mud.common.xml that return types with arguments of type XmlElement
 java.lang.Iterable<XmlElement> XmlElement.elementChildren()
           
 java.util.List<XmlElement> XmlElement.getChildren(java.lang.String tagName)
           
 java.util.List<XmlElement> XmlElement.getElementChildren()
           
 

Methods in mud.common.xml with parameters of type XmlElement
 XmlElement XmlElement.addChild(int index, XmlElement element)
           
 XmlElement XmlElement.addChild(XmlElement element)
           
static boolean XmlUtil.getBoolean(XmlElement element, java.lang.String childName, boolean defaultValue)
           
static int XmlUtil.getInt(XmlElement element, java.lang.String childName, int defaultValue)
           
static long XmlUtil.getLong(XmlElement element, java.lang.String childName, long defaultValue)
           
static java.lang.String XmlUtil.getString(XmlElement element, java.lang.String childName)
           
 void XmlFile.setRoot(XmlElement element)