Name | Arguments | Description |
countAttrs
| |
Returns the number of attributes for this tag. It is always 0 for end tags.
For text tags, it is for its enclosing tag.
|
getAttrName
| index
|
Returns the number index attribute name for this tag.
For text tags, it is for its enclosing tag.
For end tags, it is always null .
|
getAttrValue
| index
|
Returns the number index attribute value for this tag.
For text tags, it is for its enclosing tag.
For end tags, it is always null .
|
getLocal
| |
Returnts the local name of this tag.
For text tags, it is that of the enclosing tag.
|
getName
| |
Returns the name of this tag. For end tags, the name starts with '/'.
For text tags, it is that of the enclosing tag.
|
getRaw
| |
Returnts the raw tag name of this tag.
For text tags, it is that of the enclosing tag.
|
getUri
| |
Returnts the URI of this tag, if any.
For text tags, it is that of the enclosing tag.
|
hasAttrs
| |
Returns true if this tag has attributes. It is always false for end tags.
For text tags, it is for its enclosing tag.
|
isEndTag
| |
Returns true if this is an end tag.
|