| com.jclark.xml.parse.StartElementEvent
All known Subclasses: com.jclark.xml.parse.EntityParser,
getAttributeCount | int getAttributeCount()(Code) | | Returns the number of attributes.
Both specified and defaulted attributes are included.
Implied attributes are not included.
|
getAttributeName | String getAttributeName(int i)(Code) | | Returns the name of the attribute with index i .
i must be greater than or equal to 0
and less that the number of attributes returned
by getAttributeCount .
|
getAttributeSpecifiedCount | int getAttributeSpecifiedCount()(Code) | | Returns the number of attributes which were specified.
The specified attributes have indices less than the
defaulted attributes.
|
getAttributeUnnormalizedValue | String getAttributeUnnormalizedValue(int i)(Code) | | Returns the value of the specified attribute with index i
before normalization.
|
getAttributeValue | String getAttributeValue(int i)(Code) | | Returns the value of the attribute with index i .
i must be greater than or equal to 0
and less that the number of attributes returned
by getAttributeCount .
The value does not include the surrounding quotes.
|
getAttributeValue | String getAttributeValue(String name)(Code) | | Returns the value of the attribute with the specified name,
Returns null if there is no such attribute, or if the
value of the attribute was implied.
|
getIdAttributeIndex | int getIdAttributeIndex()(Code) | | Returns the index of the ID attribute, or -1 if there is no ID
attribute.
|
getName | String getName()(Code) | | Returns the element type name.
|
|
|