Uses of Interface
com.b3dgs.lionengine.file.XMLNode

Packages that use XMLNode
com.b3dgs.lionengine   
com.b3dgs.lionengine.file   
com.b3dgs.lionengine.file.impl   
com.b3dgs.lionengine.game   
com.b3dgs.lionengine.game.map   
 

Uses of XMLNode in com.b3dgs.lionengine
 

Methods in com.b3dgs.lionengine that return XMLNode
 XMLNode File.createXMLNode(java.lang.String name)
          Create an xml node from a name.
 

Uses of XMLNode in com.b3dgs.lionengine.file
 

Methods in com.b3dgs.lionengine.file that return XMLNode
 XMLNode XMLNode.getChild(java.lang.String name)
          Get a child node from its name.
 XMLNode XMLParser.load(java.lang.String file)
          Load an xml file.
 

Methods in com.b3dgs.lionengine.file that return types with arguments of type XMLNode
 java.util.List<XMLNode> XMLNode.getChildren()
          Get list of all children.
 

Methods in com.b3dgs.lionengine.file with parameters of type XMLNode
 void XMLNode.add(XMLNode node)
          Add a child node.
 void XMLParser.save(XMLNode root, java.lang.String file)
          Save an xml tree to a file.
 

Uses of XMLNode in com.b3dgs.lionengine.file.impl
 

Methods in com.b3dgs.lionengine.file.impl that return XMLNode
 XMLNode FileFactory.createXMLNode(java.lang.String name)
           
 

Uses of XMLNode in com.b3dgs.lionengine.game
 

Methods in com.b3dgs.lionengine.game with parameters of type XMLNode
protected abstract  void AbstractWorld.load(XMLNode world)
          Internal world loads.
protected abstract  void AbstractWorld.save(XMLNode world)
          Internal world saves.
 

Uses of XMLNode in com.b3dgs.lionengine.game.map
 

Methods in com.b3dgs.lionengine.game.map with parameters of type XMLNode
 void AbstractPathMap.load(XMLNode root)
           
 void AbstractTileMap.load(XMLNode root)
          Load a map from a specified file as xml.
 void DefaultTile.load(XMLNode node)
          Load tile.
 void AbstractTileMap.save(XMLNode root)
          Save map to specified file as xml.
 void DefaultTile.save(XMLNode node)
          Save tile.