| java.lang.Object uk.org.ponder.saxalizer.SAXAttributeHash
SAXAttributeHash | public class SAXAttributeHash (Code) | | The class SAXAttributeHash is used within the class GenericSAXImpl in order to
allow quick access to the XML attribute values stored within it by lookup
on attribute name.
|
Method Summary | |
public SAXAttribute | get(String name) Returns the attribute with the specified name.
Parameters: The - name of the required attribute. | Enumeration | keys() | public void | put(String name, String type, String value) Puts the supplied attribute into this hash.
Parameters: name - The name of the attribute to be added. Parameters: type - The type of the attribute to be added. |
SAXAttributeHash | public SAXAttributeHash()(Code) | | |
get | public SAXAttribute get(String name)(Code) | | Returns the attribute with the specified name.
Parameters: The - name of the required attribute. The required attribute. |
put | public void put(String name, String type, String value)(Code) | | Puts the supplied attribute into this hash.
Parameters: name - The name of the attribute to be added. Parameters: type - The type of the attribute to be added. This parameter is effectively disused,but should really be set to CDATA . Isn't XML boring. Parameters: value - The value of the attribute to be added. |
|
|