BEA Systems, Inc.

weblogic.apache.xerces.util
Class AugmentationsImpl

java.lang.Object
  extended by weblogic.apache.xerces.util.AugmentationsImpl
All Implemented Interfaces:
Augmentations

Deprecated. please use JDK supplied XML parsers and transformers

public class AugmentationsImpl
extends Object
implements Augmentations

This class provides an implementation for Augmentations interface. Augmentations interface defines a hashtable of additional data that could 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.


Constructor Summary
AugmentationsImpl()
          Deprecated.  
 
Method Summary
 void clear()
          Deprecated. Remove all objects from the Augmentations structure.
 Object getItem(String key)
          Deprecated. Get information identified by a key from the Augmentations structure
 Enumeration keys()
          Deprecated. Returns an enumeration of the keys in the Augmentations structure
 Object putItem(String key, Object item)
          Deprecated. Add additional information identified by a key to the Augmentations structure.
 Object removeItem(String key)
          Deprecated. Remove additional info from the Augmentations structure
 String toString()
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AugmentationsImpl

public AugmentationsImpl()
Deprecated. 
Method Detail

putItem

public Object putItem(String key,
                      Object item)
Deprecated. 
Add additional information identified by a key to the Augmentations structure.

Specified by:
putItem in interface Augmentations
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.

getItem

public Object getItem(String key)
Deprecated. 
Get information identified by a key from the Augmentations structure

Specified by:
getItem in interface Augmentations
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.

removeItem

public Object removeItem(String key)
Deprecated. 
Remove additional info from the Augmentations structure

Specified by:
removeItem in interface Augmentations
Parameters:
key - Identifier, can't be null
Returns:
the previous value of the specified key in the Augmentations structure, or null if it did not have one.

keys

public Enumeration keys()
Deprecated. 
Returns an enumeration of the keys in the Augmentations structure

Specified by:
keys in interface Augmentations

clear

public void clear()
Deprecated. 
Remove all objects from the Augmentations structure.

Specified by:
clear in interface Augmentations

toString

public String toString()
Deprecated. 
Overrides:
toString in class Object

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs92
Copyright 2006 BEA Systems Inc.