org.apache.xerces.util
public class AugmentationsImpl extends Object implements Augmentations
Version: $Id: AugmentationsImpl.java,v 1.9 2004/02/24 23:15:53 mrglavas Exp $
Method Summary | |
---|---|
Object | getItem(String key)
Get information identified by a key from the Augmentations structure
|
Enumeration | keys()
Returns an enumeration of the keys in the Augmentations structure
|
Object | putItem(String key, Object item)
Add additional information identified by a key to the Augmentations structure.
|
void | removeAllItems()
Remove all objects from the Augmentations structure. |
Object | removeItem(String key)
Remove additional info from the Augmentations structure
|
String | toString() |
Parameters: key Identifier, can't be null
Returns: the value to which the key is mapped in the Augmentations structure;
null
if the key is not mapped to any value.
Parameters: key Identifier, can't be null
item Additional information
Returns: the previous value of the specified key in the Augmentations strucutre,
or null
if it did not have one.
Parameters: key Identifier, can't be null