|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Augmentations
The Augmentations interface defines a table of additional data that may be passed along the document pipeline. The information can contain extra arguments or infoset augmentations, for example PSVI. This additional information is identified by a String key.
Note: Methods that receive Augmentations are required to copy the information if it is to be saved for use beyond the scope of the method. The Augmentations content is volatile, and maybe modified by any method in any component in the pipeline. Therefore, methods passed this structure should not save any reference to the structure.
Method Summary | |
---|---|
java.lang.Object |
getItem(java.lang.String key)
Get information identified by a key from the Augmentations structure |
java.util.Enumeration |
keys()
Returns an enumeration of the keys in the Augmentations structure |
java.lang.Object |
putItem(java.lang.String key,
java.lang.Object item)
Add additional information identified by a key to the Augmentations structure. |
void |
removeAllItems()
Remove all objects from the Augmentations structure. |
java.lang.Object |
removeItem(java.lang.String key)
Remove additional info from the Augmentations structure |
Method Detail |
---|
java.lang.Object putItem(java.lang.String key, java.lang.Object item)
key
- Identifier, can't be null
item
- Additional information
null
if it did not have one.java.lang.Object getItem(java.lang.String key)
key
- Identifier, can't be null
null
if the key is not mapped to any value.java.lang.Object removeItem(java.lang.String key)
key
- Identifier, can't be null
null
if it did not have one.java.util.Enumeration keys()
void removeAllItems()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |