| Method from javax.servlet.jsp.tagext.TagLibraryInfo Detail: |
public FunctionInfo getFunction(String name) {
if (functions == null || functions.length == 0) {
System.err.println("No functions");
return null;
}
for (int i=0; i < functions.length; i++) {
if (functions[i].getName().equals(name)) {
return functions[i];
}
}
return null;
}
Get the FunctionInfo for a given function name, looking through all the
functions in this tag library. |
public FunctionInfo[] getFunctions() {
return functions;
}
An array describing the functions that are defined in this tag library. |
public String getInfoString() {
return info;
}
Information (documentation) for this TLD. |
public String getPrefixString() {
return prefix;
}
The prefix assigned to this taglib from the taglib directive |
public String getReliableURN() {
return urn;
}
The "reliable" URN indicated in the TLD (the uri element).
This may be used by authoring tools as a global identifier
to use when creating a taglib directive for this library. |
public String getRequiredVersion() {
return jspversion;
}
A string describing the required version of the JSP container. |
public String getShortName() {
return shortname;
}
The preferred short name (prefix) as indicated in the TLD.
This may be used by authoring tools as the preferred prefix
to use when creating an taglib directive for this library. |
public TagInfo getTag(String shortname) {
TagInfo tags[] = getTags();
if (tags == null || tags.length == 0) {
return null;
}
for (int i=0; i < tags.length; i++) {
if (tags[i].getTagName().equals(shortname)) {
return tags[i];
}
}
return null;
}
Get the TagInfo for a given tag name, looking through all the
tags in this tag library. |
public TagFileInfo getTagFile(String shortname) {
TagFileInfo tagFiles[] = getTagFiles();
if (tagFiles == null || tagFiles.length == 0) {
return null;
}
for (int i=0; i < tagFiles.length; i++) {
if (tagFiles[i].getName().equals(shortname)) {
return tagFiles[i];
}
}
return null;
}
Get the TagFileInfo for a given tag name, looking through all the
tag files in this tag library. |
public TagFileInfo[] getTagFiles() {
return tagFiles;
}
An array describing the tag files that are defined in this tag library. |
public TagInfo[] getTags() {
return tags;
}
An array describing the tags that are defined in this tag library. |
public String getURI() {
return uri;
}
The value of the uri attribute from the taglib directive for
this library. |