Methods Summary |
---|
public java.lang.Object | getItem(java.lang.String key)Get information identified by a key from the Augmentations structure
return fAugmentationsContainer.getItem(key);
|
public java.util.Enumeration | keys()Returns an enumeration of the keys in the Augmentations structure
return fAugmentationsContainer.keys();
|
public java.lang.Object | putItem(java.lang.String key, java.lang.Object item)Add additional information identified by a key to the Augmentations structure.
Object oldValue = fAugmentationsContainer.putItem(key, item);
if (oldValue == null && fAugmentationsContainer.isFull()) {
fAugmentationsContainer = fAugmentationsContainer.expand();
}
return oldValue;
|
public void | removeAllItems()Remove all objects from the Augmentations structure.
fAugmentationsContainer.clear();
|
public java.lang.Object | removeItem(java.lang.String key)Remove additional info from the Augmentations structure
return fAugmentationsContainer.removeItem(key);
|
public java.lang.String | toString()
return fAugmentationsContainer.toString();
|