public interface DocletTagLibrary extends TagLibrary
Modifier and Type | Method and Description |
---|---|
java.util.Map |
getAttributes(java.lang.String ns,
java.lang.String tag)
This function reports the attributes associated with a particular tag.
|
java.util.Map |
getConverters(java.lang.String ns)
This function reports the converters associated with a namespace.
|
java.lang.String[] |
getNameSpaces()
This function reports the namespaces this tag library holds.
|
TagLibrary |
getParent()
This function reports the parent tagLibrary.
|
java.util.Map |
getTags()
This function reports the tags having the creators and are located
inside this tag library.
|
getAdder, getConverter, getCreator, getSetter, getSpecialCreator
TagLibrary getParent()
java.lang.String[] getNameSpaces()
Note that a namespace (a value inside the string array) can be null to indicate that the tag library does not handle namespaces.
java.util.Map getTags()
The returned map uses XML namespace as the key, and a string array of tag names as the value as its entries.
java.util.Map getAttributes(java.lang.String ns, java.lang.String tag)
The returned map uses XML namespace as the key, and a string array of attribute names as the value as its entries.
ns
- the namespace of the tag.tag
- the tag name.java.util.Map getConverters(java.lang.String ns)
ns
- the namespace.