| org.jfree.report.util.SerializeMethod
All known Subclasses: org.jfree.report.util.serializers.GeneralPathSerializer, org.jfree.report.util.serializers.BasicStrokeSerializer, org.jfree.report.util.serializers.Point2DSerializer, org.jfree.report.util.serializers.ColorSerializer, org.jfree.report.util.serializers.PageFormatSerializer, org.jfree.report.util.serializers.Rectangle2DSerializer, org.jfree.report.util.serializers.Line2DSerializer, org.jfree.report.util.serializers.Dimension2DSerializer, org.jfree.report.util.serializers.Ellipse2DSerializer,
SerializeMethod | public interface SerializeMethod extends org.jfree.serializer.SerializeMethod(Code) | | The SerializeMethod is used to define a serialization strategy for a certain object
type.
author: Thomas Morgner |
getObjectClass | public Class getObjectClass()(Code) | | The class of the object, which this object can serialize.
the class of the object type, which this method handles. |
writeObject | public void writeObject(Object o, ObjectOutputStream out) throws IOException(Code) | | Writes a serializable object description to the given object output stream.
Parameters: o - the to be serialized object. Parameters: out - the outputstream that should receive the object. throws: IOException - if an I/O error occured. |
|
|