Package org.apache.fop.pdf.xref
Interface ObjectReference
-
- All Known Implementing Classes:
CompressedObjectReference,UncompressedObjectReference
interface ObjectReferenceA reference to an indirect object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidoutput(java.io.DataOutputStream out)Outputs this reference to the given stream, in the cross-reference stream format.
-
-
-
Method Detail
-
output
void output(java.io.DataOutputStream out) throws java.io.IOExceptionOutputs this reference to the given stream, in the cross-reference stream format. For example, a object may output the bytes 01 00 00 00 00 00 00 01 ff 00 to indicate a non-compressed object (01), at offset 511 from the beginning of the file (00 00 00 00 00 00 01 ff), of generation number 0 (00).- Parameters:
out- the stream to which to output the reference- Throws:
java.io.IOException
-
-