| java.lang.Object com.lowagie.text.pdf.PdfObject com.lowagie.text.pdf.PdfIndirectReference
All known Subclasses: com.lowagie.text.pdf.PRIndirectReference,
PdfIndirectReference | public class PdfIndirectReference extends PdfObject (Code) | | PdfIndirectReference contains a reference to a PdfIndirectObject .
Any object used as an element of an array or as a value in a dictionary may be specified
by either a direct object of an indirect reference. An indirect reference is a reference
to an indirect object, and consists of the indirect object's object number, generation number
and the R keyword.
This object is described in the 'Portable Document Format Reference Manual version 1.3'
section 4.11 (page 54).
See Also: PdfObject See Also: PdfIndirectObject |
generation | protected int generation(Code) | | the generation number
|
number | protected int number(Code) | | the object number
|
PdfIndirectReference | protected PdfIndirectReference()(Code) | | |
PdfIndirectReference | PdfIndirectReference(int type, int number, int generation)(Code) | | Constructs a PdfIndirectReference .
Parameters: type - the type of the PdfObject that is referenced to Parameters: number - the object number. Parameters: generation - the generation number. |
PdfIndirectReference | PdfIndirectReference(int type, int number)(Code) | | Constructs a PdfIndirectReference .
Parameters: type - the type of the PdfObject that is referenced to Parameters: number - the object number. |
getGeneration | public int getGeneration()(Code) | | Returns the generation of the object.
a number. |
getNumber | public int getNumber()(Code) | | Returns the number of the object.
a number. |
|
|