-
- All Known Implementing Classes:
PdfCopy,PdfSmartCopy,PdfWriter
public interface PdfAnnotations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddAnnotation(PdfAnnotation annot)Use this methods to add aPdfAnnotationor aPdfFormFieldto the document.voidaddCalculationOrder(PdfFormField annot)Use this method to adds thePdfAnnotationto the calculation order array.PdfAcroFormgetAcroForm()Use this methods to get the AcroForm object.voidsetSigFlags(int f)Use this method to set the signature flags.
-
-
-
Method Detail
-
getAcroForm
PdfAcroForm getAcroForm()
Use this methods to get the AcroForm object. Use this method only if you know what you're doing- Returns:
- the PdfAcroform object of the PdfDocument
-
addAnnotation
void addAnnotation(PdfAnnotation annot)
Use this methods to add aPdfAnnotationor aPdfFormFieldto the document. Only the top parent of aPdfFormFieldneeds to be added.- Parameters:
annot- thePdfAnnotationor thePdfFormFieldto add
-
addCalculationOrder
void addCalculationOrder(PdfFormField annot)
Use this method to adds thePdfAnnotationto the calculation order array.- Parameters:
annot- thePdfAnnotationto be added
-
setSigFlags
void setSigFlags(int f)
Use this method to set the signature flags.- Parameters:
f- the flags. This flags are ORed with current ones
-
-