Interface Ardor3dExporter

All Known Implementing Classes:
BinaryExporter, XMLExporter

public interface Ardor3dExporter
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    save(Savable savable, File file)
    Save a Savable object to the given file.
    void
    save(Savable savable, OutputStream os)
    Save a Savable object to the given stream.
  • Method Details

    • save

      void save(Savable savable, OutputStream os) throws IOException
      Save a Savable object to the given stream.
      Parameters:
      savable - the savable object
      os - the output stream
      Throws:
      IOException - exception
    • save

      void save(Savable savable, File file) throws IOException
      Save a Savable object to the given file.
      Parameters:
      savable - the savable object
      file - the file
      Throws:
      IOException - exception