Interface Writable<T>

Type Parameters:
T - the writable object type

public interface Writable<T>
Encapsulates a writable object.
Author:
Paul Ferraro
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    write(org.jboss.marshalling.Marshaller marshaller, T object)
    Writes the specified object to the specified marshaller.
  • Method Details

    • write

      void write(org.jboss.marshalling.Marshaller marshaller, T object) throws IOException
      Writes the specified object to the specified marshaller.
      Parameters:
      marshaller - a marshaller
      object - the object to be written
      Throws:
      IOException - if the object could not be written.