Package com.proxemo.todo4.common
Class ToDoPDFFormField
- java.lang.Object
-
- com.proxemo.todo4.common.ToDoPDFFormField
-
public class ToDoPDFFormField extends java.lang.ObjectSmall class representing a PDF form field.
-
-
Field Summary
Fields Modifier and Type Field Description intftypeThe type of the form field.java.lang.StringnameThe name of the form field.static intPDF_BUTTONstatic intPDF_CHECKBOXstatic intPDF_COMBOstatic intPDF_LISTstatic intPDF_RADIOstatic intPDF_SIGNATUREstatic intPDF_TEXTstatic intPDF_UNKNOWNjava.lang.ObjectvalueThe value of the form field.
-
Constructor Summary
Constructors Constructor Description ToDoPDFFormField(java.lang.String name, java.lang.Object value, int ftype)ToDoPDFFormField(java.lang.String name, java.lang.Object value, java.lang.String ftype)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFtype()java.lang.StringgetName()java.lang.ObjectgetValue()voidsetName(java.lang.String name)voidsetType(int ftype)voidsetValue(java.lang.Object value)
-
-
-
Field Detail
-
PDF_UNKNOWN
public static final int PDF_UNKNOWN
- See Also:
- Constant Field Values
-
PDF_TEXT
public static final int PDF_TEXT
- See Also:
- Constant Field Values
-
PDF_BUTTON
public static final int PDF_BUTTON
- See Also:
- Constant Field Values
-
PDF_COMBO
public static final int PDF_COMBO
- See Also:
- Constant Field Values
-
PDF_RADIO
public static final int PDF_RADIO
- See Also:
- Constant Field Values
-
PDF_SIGNATURE
public static final int PDF_SIGNATURE
- See Also:
- Constant Field Values
-
PDF_CHECKBOX
public static final int PDF_CHECKBOX
- See Also:
- Constant Field Values
-
PDF_LIST
public static final int PDF_LIST
- See Also:
- Constant Field Values
-
name
public java.lang.String name
The name of the form field.
-
value
public java.lang.Object value
The value of the form field.
-
ftype
public int ftype
The type of the form field.
-
-