public abstract class TagLibraryInfo extends Object
Modifier and Type | Field and Description |
---|---|
protected FunctionInfo[] |
functions
An array describing the functions that are defined in this tag library.
|
protected String |
info
Information (documentation) for this TLD.
|
protected String |
jspversion
The version of the JSP specification this tag library is written to.
|
protected String |
prefix
The prefix assigned to this taglib from the taglib directive.
|
protected String |
shortname
The preferred short name (prefix) as indicated in the TLD.
|
protected TagFileInfo[] |
tagFiles
An array describing the tag files that are defined in this tag library.
|
protected TagInfo[] |
tags
An array describing the tags that are defined in this tag library.
|
protected String |
tlibversion
The version of the tag library.
|
protected String |
uri
The value of the uri attribute from the taglib directive for
this library.
|
protected String |
urn
The "reliable" URN indicated in the TLD.
|
Modifier | Constructor and Description |
---|---|
protected |
TagLibraryInfo(String prefix,
String uri)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
FunctionInfo |
getFunction(String name)
Get the FunctionInfo for a given function name, looking through all the
functions in this tag library.
|
FunctionInfo[] |
getFunctions()
An array describing the functions that are defined in this tag library.
|
String |
getInfoString()
Information (documentation) for this TLD.
|
String |
getPrefixString()
The prefix assigned to this taglib from the taglib directive
|
String |
getReliableURN()
The "reliable" URN indicated in the TLD (the uri element).
|
String |
getRequiredVersion()
A string describing the required version of the JSP container.
|
String |
getShortName()
The preferred short name (prefix) as indicated in the TLD.
|
TagInfo |
getTag(String shortname)
Get the TagInfo for a given tag name, looking through all the
tags in this tag library.
|
TagFileInfo |
getTagFile(String shortname)
Get the TagFileInfo for a given tag name, looking through all the
tag files in this tag library.
|
TagFileInfo[] |
getTagFiles()
An array describing the tag files that are defined in this tag library.
|
abstract TagLibraryInfo[] |
getTagLibraryInfos()
Returns an array of TagLibraryInfo objects representing the entire set
of tag libraries (including this TagLibraryInfo) imported by taglib
directives in the translation unit that references this
TagLibraryInfo.
|
TagInfo[] |
getTags()
An array describing the tags that are defined in this tag library.
|
String |
getURI()
The value of the uri attribute from the taglib directive for
this library.
|
protected String prefix
protected String uri
protected TagInfo[] tags
protected TagFileInfo[] tagFiles
protected FunctionInfo[] functions
protected String tlibversion
protected String jspversion
protected String shortname
protected String urn
protected String info
public String getURI()
public String getPrefixString()
public String getShortName()
public String getReliableURN()
public String getInfoString()
public String getRequiredVersion()
JspEngineInfo
public TagInfo[] getTags()
public TagFileInfo[] getTagFiles()
public TagInfo getTag(String shortname)
shortname
- The short name (no prefix) of the tagpublic TagFileInfo getTagFile(String shortname)
shortname
- The short name (no prefix) of the tagpublic FunctionInfo[] getFunctions()
public FunctionInfo getFunction(String name)
name
- The name (no prefix) of the functionpublic abstract TagLibraryInfo[] getTagLibraryInfos()
Copyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.