| java.lang.Object org.jfree.report.util.serializers.BandLayoutManagerSerializer
BandLayoutManagerSerializer | public class BandLayoutManagerSerializer implements SerializeMethod(Code) | | A SerializeMethod implementation that handles BandLayoutManagers.
author: Thomas Morgner See Also: org.jfree.report.layout.BandLayoutManager |
BandLayoutManagerSerializer | public BandLayoutManagerSerializer()(Code) | | Default Constructor.
|
getObjectClass | public Class getObjectClass()(Code) | | The class of the object, which this object can serialize.
the class org.jfree.report.layout.BandLayoutManager . |
readObject | public Object readObject(ObjectInputStream in) throws IOException, ClassNotFoundException(Code) | | Reads the object from the object input stream. This will read a serialized class name
of the BandLayoutManager. The specified class is then instantiated using its default
constructor.
Parameters: in - the object input stream from where to read the serialized data. the generated object. throws: IOException - if reading the stream failed. throws: ClassNotFoundException - if serialized object class cannot be found. |
writeObject | public void writeObject(Object o, ObjectOutputStream out) throws IOException(Code) | | Writes a serializable object description to the given object output stream. As
bandlayoutmanagers need to be instantiable by their default constructor, it is
sufficient to write the class of the layout manager.
Parameters: o - the to be serialized object. Parameters: out - the outputstream that should receive the object. throws: IOException - if an I/O error occured. |
|
|