| java.lang.Object com.lowagie.text.pdf.FdfWriter
FdfWriter | public class FdfWriter (Code) | | Writes an FDF form.
author: Paulo Soares (psoares@consiste.pt) |
Inner Class :static class Wrt extends PdfWriter | |
Constructor Summary | |
public | FdfWriter() Creates a new FdfWriter. |
FdfWriter | public FdfWriter()(Code) | | Creates a new FdfWriter.
|
getField | public String getField(String field)(Code) | | Gets the field value.
Parameters: field - the field name the field value or null if not found |
getFields | public HashMap getFields()(Code) | | Gets all the fields. The map is keyed by the fully qualified
field name and the values are PdfObject .
a map with all the fields |
getFile | public String getFile()(Code) | | Gets the PDF file name associated with the FDF.
the PDF file name associated with the FDF |
removeField | public boolean removeField(String field)(Code) | | Removes the field value.
Parameters: field - the field name true if the field was found and removed,false otherwise |
setFieldAsName | public boolean setFieldAsName(String field, String value)(Code) | | Sets the field value as a name.
Parameters: field - the fully qualified field name Parameters: value - the value true if the value was inserted,false if the name is incompatible withan existing field |
setFieldAsString | public boolean setFieldAsString(String field, String value)(Code) | | Sets the field value as a string.
Parameters: field - the fully qualified field name Parameters: value - the value true if the value was inserted,false if the name is incompatible withan existing field |
setFields | public void setFields(FdfReader fdf)(Code) | | Sets all the fields from this FdfReader
Parameters: fdf - the FdfReader |
setFields | public void setFields(PdfReader pdf)(Code) | | Sets all the fields from this PdfReader
Parameters: pdf - the PdfReader |
setFields | public void setFields(AcroFields af)(Code) | | Sets all the fields from this AcroFields
Parameters: af - the AcroFields |
setFile | public void setFile(String file)(Code) | | Sets the PDF file name associated with the FDF.
Parameters: file - the PDF file name associated with the FDF |
|
|