Package com.aowagie.text.pdf
Class AcroFields.Item
- java.lang.Object
-
- com.aowagie.text.pdf.AcroFields.Item
-
- Enclosing class:
- AcroFields
public static class AcroFields.Item extends java.lang.ObjectThe field representations for retrieval and modification.
-
-
Field Summary
Fields Modifier and Type Field Description java.util.ArrayListmergedDeprecated.(will remove 'public' in the future)java.util.ArrayListpageDeprecated.(will remove 'public' in the future)java.util.ArrayListtabOrderDeprecated.(will remove 'public' in the future)java.util.ArrayListvaluesDeprecated.(will remove 'public' in the future)java.util.ArrayListwidget_refsDeprecated.(will remove 'public' in the future)java.util.ArrayListwidgetsDeprecated.(will remove 'public' in the future)static intWRITE_MERGEDwriteToAllconstant.static intWRITE_VALUEwriteToAllandmarkUsedconstant.static intWRITE_WIDGETwriteToAllandmarkUsedconstant.
-
Constructor Summary
Constructors Constructor Description Item()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) voidaddMerged(PdfDictionary mergeDict)Adds a merged dictionary to this Item.(package private) voidaddPage(int pg)Adds a page to the current Item.(package private) voidaddTabOrder(int order)Adds a tab order value to this Item.(package private) voidaddValue(PdfDictionary value)Add a value dict to this Item(package private) voidaddWidget(PdfDictionary widget)Add a widget dict to this Item(package private) voidaddWidgetRef(PdfIndirectReference widgRef)Add a widget ref to this Item(package private) voidforcePage(int idx, int pg)forces a page value into the Item.PdfDictionarygetMerged(int idx)Retrieve the merged dictionary for the given instance.java.lang.IntegergetPage(int idx)Retrieve the page number of the given instancejava.lang.IntegergetTabOrder(int idx)Gets the tabOrder.PdfDictionarygetValue(int idx)Retrieve the value dictionary of the given instancePdfDictionarygetWidget(int idx)Retrieve the widget dictionary of the given instancePdfIndirectReferencegetWidgetRef(int idx)Retrieve the reference to the given instancevoidmarkUsed(AcroFields parentFields, int writeFlags)Mark all the item dictionaries used matching the given flags(package private) voidremove(int killIdx)Remove the given instance from this item.intsize()Preferred method of determining the number of instances of a given field.voidwriteToAll(PdfName key, PdfObject value, int writeFlags)This function writes the given key/value pair to all the instances of merged, widget, and/or value, depending on thewriteFlagssetting
-
-
-
Field Detail
-
WRITE_MERGED
public static final int WRITE_MERGED
writeToAllconstant.- Since:
- 2.1.5
- See Also:
- Constant Field Values
-
WRITE_WIDGET
public static final int WRITE_WIDGET
writeToAllandmarkUsedconstant.- Since:
- 2.1.5
- See Also:
- Constant Field Values
-
WRITE_VALUE
public static final int WRITE_VALUE
writeToAllandmarkUsedconstant.- Since:
- 2.1.5
- See Also:
- Constant Field Values
-
values
@Deprecated public java.util.ArrayList values
Deprecated.(will remove 'public' in the future)An array ofPdfDictionarywhere the value tag /V is present.
-
widgets
@Deprecated public java.util.ArrayList widgets
Deprecated.(will remove 'public' in the future)An array ofPdfDictionarywith the widgets.
-
widget_refs
@Deprecated public java.util.ArrayList widget_refs
Deprecated.(will remove 'public' in the future)An array ofPdfDictionarywith the widget references.
-
merged
@Deprecated public java.util.ArrayList merged
Deprecated.(will remove 'public' in the future)An array ofPdfDictionarywith all the field and widget tags merged.
-
page
@Deprecated public java.util.ArrayList page
Deprecated.(will remove 'public' in the future)An array ofIntegerwith the page numbers where the widgets are displayed.
-
tabOrder
@Deprecated public java.util.ArrayList tabOrder
Deprecated.(will remove 'public' in the future)An array ofIntegerwith the tab order of the field in the page.
-
-
Method Detail
-
writeToAll
public void writeToAll(PdfName key, PdfObject value, int writeFlags)
This function writes the given key/value pair to all the instances of merged, widget, and/or value, depending on thewriteFlagssetting- Parameters:
key- you'll never guess what this is for.value- if value is null, the key will be removedwriteFlags- ORed together WRITE_* flags- Since:
- 2.1.5
-
markUsed
public void markUsed(AcroFields parentFields, int writeFlags)
Mark all the item dictionaries used matching the given flags- Parameters:
parentFields- Fields to markwriteFlags- WRITE_MERGED is ignored- Since:
- 2.1.5
-
size
public int size()
Preferred method of determining the number of instances of a given field.- Returns:
- number of instances
- Since:
- 2.1.5
-
remove
void remove(int killIdx)
Remove the given instance from this item. It is possible to remove all instances using this function.- Parameters:
killIdx-- Since:
- 2.1.5
-
getValue
public PdfDictionary getValue(int idx)
Retrieve the value dictionary of the given instance- Parameters:
idx- instance index- Returns:
- dictionary storing this instance's value. It may be shared across instances.
- Since:
- 2.1.5
-
addValue
void addValue(PdfDictionary value)
Add a value dict to this Item- Parameters:
value- new value dictionary- Since:
- 2.1.5
-
getWidget
public PdfDictionary getWidget(int idx)
Retrieve the widget dictionary of the given instance- Parameters:
idx- instance index- Returns:
- The dictionary found in the appropriate page's Annot array.
- Since:
- 2.1.5
-
addWidget
void addWidget(PdfDictionary widget)
Add a widget dict to this Item- Parameters:
widget-- Since:
- 2.1.5
-
getWidgetRef
public PdfIndirectReference getWidgetRef(int idx)
Retrieve the reference to the given instance- Parameters:
idx- instance index- Returns:
- reference to the given field instance
- Since:
- 2.1.5
-
addWidgetRef
void addWidgetRef(PdfIndirectReference widgRef)
Add a widget ref to this Item- Parameters:
widgRef-- Since:
- 2.1.5
-
getMerged
public PdfDictionary getMerged(int idx)
Retrieve the merged dictionary for the given instance. The merged dictionary contains all the keys present in parent fields, though they may have been overwritten (or modified?) by children. Example: a merged radio field dict will contain /V- Parameters:
idx- instance index- Returns:
- the merged dictionary for the given instance
- Since:
- 2.1.5
-
addMerged
void addMerged(PdfDictionary mergeDict)
Adds a merged dictionary to this Item.- Parameters:
mergeDict-- Since:
- 2.1.5
-
getPage
public java.lang.Integer getPage(int idx)
Retrieve the page number of the given instance- Parameters:
idx- Number of page- Returns:
- remember, pages are "1-indexed", not "0-indexed" like field instances.
- Since:
- 2.1.5
-
addPage
void addPage(int pg)
Adds a page to the current Item.- Parameters:
pg-- Since:
- 2.1.5
-
forcePage
void forcePage(int idx, int pg)forces a page value into the Item.- Parameters:
idx-- Since:
- 2.1.5
-
getTabOrder
public java.lang.Integer getTabOrder(int idx)
Gets the tabOrder.- Parameters:
idx- Number of tab- Returns:
- tab index of the given field instance
- Since:
- 2.1.5
-
addTabOrder
void addTabOrder(int order)
Adds a tab order value to this Item.- Parameters:
order-- Since:
- 2.1.5
-
-