Package com.ardor3d.util.export.xml
Class XMLImporter
java.lang.Object
com.ardor3d.util.export.xml.XMLImporter
- All Implemented Interfaces:
Ardor3dImporter
Part of the ardor3d XML IO system
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionload
(byte[] data) Load a Savable object from the given byte array, starting at the first index.Load a Savable object from the given file.load
(InputStream is) Load a Savable object from the given stream.Load a Savable object from the given URL.
-
Constructor Details
-
XMLImporter
public XMLImporter()
-
-
Method Details
-
load
Description copied from interface:Ardor3dImporter
Load a Savable object from the given stream.- Specified by:
load
in interfaceArdor3dImporter
- Parameters:
is
- the input stream- Returns:
- the savable object.
- Throws:
IOException
- exception
-
load
Description copied from interface:Ardor3dImporter
Load a Savable object from the given URL.- Specified by:
load
in interfaceArdor3dImporter
- Parameters:
url
- the URL- Returns:
- the savable object.
- Throws:
IOException
- exception
-
load
Description copied from interface:Ardor3dImporter
Load a Savable object from the given file.- Specified by:
load
in interfaceArdor3dImporter
- Parameters:
f
- the file- Returns:
- the savable object.
- Throws:
IOException
- exception
-
load
Description copied from interface:Ardor3dImporter
Load a Savable object from the given byte array, starting at the first index.- Specified by:
load
in interfaceArdor3dImporter
- Parameters:
data
- the data- Returns:
- the savable object.
- Throws:
IOException
- exception
-