Package com.proxemo.todo4.common
Class ToDoPDFFormField
- java.lang.Object
-
- com.proxemo.todo4.common.ToDoPDFFormField
-
public class ToDoPDFFormField extends java.lang.Object
Small class representing a PDF form field.
-
-
Field Summary
Fields Modifier and Type Field Description int
ftype
The type of the form field.java.lang.String
name
The name of the form field.static int
PDF_BUTTON
static int
PDF_CHECKBOX
static int
PDF_COMBO
static int
PDF_LIST
static int
PDF_RADIO
static int
PDF_SIGNATURE
static int
PDF_TEXT
static int
PDF_UNKNOWN
java.lang.Object
value
The 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 int
getFtype()
java.lang.String
getName()
java.lang.Object
getValue()
void
setName(java.lang.String name)
void
setType(int ftype)
void
setValue(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.
-
-