javax.servlet.jsp.tagext
Class TagLibraryInfo
java.lang.Object
javax.servlet.jsp.tagext.TagLibraryInfo
public abstract class TagLibraryInfo
extends java.lang.Object
Information on the Tag Library;
this class is instantiated from the Tag Library Descriptor file (TLD).
TagLibraryInfo(String prefix, String uri) - Constructor
This will invoke the constructors for TagInfo, and TagAttributeInfo
after parsing the TLD file.
|
info
protected String info
jspversion
protected String jspversion
prefix
protected String prefix
shortname
protected String shortname
tlibversion
protected String tlibversion
TagLibraryInfo
protected TagLibraryInfo(String prefix,
String uri)
Constructor
This will invoke the constructors for TagInfo, and TagAttributeInfo
after parsing the TLD file.
prefix
- the prefix actually used by the taglib directiveuri
- the URI actually used by the taglib directive
getInfoString
public String getInfoString()
- the info string for this tag lib
getPrefixString
public String getPrefixString()
- the prefix assigned to this taglib from the <%taglib directive
getReliableURN
public String getReliableURN()
- a reliable URN to a TLD like this
getRequiredVersion
public String getRequiredVersion()
The required version.
TODO -- minimal?
getShortName
public String getShortName()
- the prefered short name for the library
getTag
public TagInfo getTag(String shortname)
Get the TagInfo for a given tag name
getTags
public TagInfo[] getTags()
- the tags defined in this tag lib
getURI
public String getURI()
- the URI from the <%@ taglib directive for this library
Copyright © 1999-2000 The Apache Software Foundation. All Rights Reserved.