public interface JmeExporter
JmeExporter
specifies an export implementation for jME3
data.Modifier and Type | Method and Description |
---|---|
OutputCapsule |
getCapsule(Savable object)
Returns the
OutputCapsule for the given savable object. |
void |
save(Savable object,
java.io.File f)
Export the
Savable to a file. |
void |
save(Savable object,
java.io.OutputStream f)
Export the
Savable to an OutputStream. |
void save(Savable object, java.io.OutputStream f) throws java.io.IOException
Savable
to an OutputStream.object
- The savable to exportf
- The output streamjava.io.IOException
- If an io exception occurs during exportvoid save(Savable object, java.io.File f) throws java.io.IOException
Savable
to a file.object
- The savable to exportf
- The file to export tojava.io.IOException
- If an io exception occurs during exportOutputCapsule getCapsule(Savable object)
OutputCapsule
for the given savable object.object
- The object to retrieve an output capsule for.OutputCapsule
for the given savable object.