Package | Description |
---|---|
org.apache.pdfbox.pdmodel.interactive.digitalsignature.visible |
This is the visual signature part that help creating the visual representation for the digital signature.
|
org.apache.pdfbox.pdmodel.interactive.form |
The interactive package contains classes that deal with interactive annotations such as textfields and buttons.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.List<PDField> |
PDFTemplateStructure.getAcroFormFields() |
Gets acroFormFields
|
Modifier and Type | Method | Description |
---|---|---|
void |
PDFTemplateStructure.setAcroFormFields(java.util.List<PDField> acroFormFields) |
Sets acroFormFields
|
Modifier and Type | Class | Description |
---|---|---|
class |
PDCheckbox |
A class for handling the PDF field as a checkbox.
|
class |
PDChoiceButton |
This holds common functionality for check boxes and radio buttons.
|
class |
PDChoiceField |
A class for handling the PDF field as a choicefield.
|
class |
PDPushButton |
A class for handling the PDF field as a PDPushButton.
|
class |
PDRadioCollection |
A class for handling the PDF field as a Radio Collection.
|
class |
PDSignature |
Deprecated.
Use
PDSignatureField instead (see PDFBOX-1513). |
class |
PDSignatureField |
A class for handling the PDF field as a signature.
|
class |
PDTextbox |
A class for handling the PDF field as a textbox.
|
class |
PDUnknownField |
This class represents a form field with an unknown type.
|
class |
PDVariableText |
A class for handling PDF fields that display text.
|
Modifier and Type | Method | Description |
---|---|---|
static PDField |
PDFieldFactory.createField(PDAcroForm acroForm,
COSDictionary field) |
This method creates a COSField subclass from the given field.
|
PDField |
PDField.findKid(java.lang.String[] name,
int nameIndex) |
This will find one of the child elements.
|
PDField |
PDAcroForm.getField(java.lang.String name) |
This will get a field by name, possibly using the cache if setCache is true.
|
PDField |
PDField.getParent() |
Get the parent field to this field, or null if none exists.
|
Modifier and Type | Method | Description |
---|---|---|
void |
PDField.setParent(PDField parent) |
Set the parent of this field.
|