Uses of Class
javax.servlet.jsp.tagext.TagInfo

Packages that use TagInfo
com.caucho.jsp   
com.caucho.jsp.java   
javax.servlet.jsp.tagext   
 

Uses of TagInfo in com.caucho.jsp
 

Subclasses of TagInfo in com.caucho.jsp
 class TagInfoImpl
          Stores the entire information for a tag library.
 class TempTagInfo
          Temporary tag information for recursive tags.
 

Methods in com.caucho.jsp that return TagInfo
 TagInfo JspCompilerInstance.compileTag(TagTaglib taglib)
           
 TagInfo JspGenerator.generateTagInfo(java.lang.String className, TagLibraryInfo tag)
          Returns the tags taginfo.
 TagInfo TagFileManager.getTag(Path path, java.lang.String prefix, java.lang.String location)
           
 TagInfo TagFileManager.getTag(Path path, java.lang.String location, TagTaglib taglib)
           
 TagInfo ParseTagManager.getTag(QName qname)
          Returns the tag with the given qname.
 TagInfo Taglib.getTag(java.lang.String name)
          Hack to avoid JSDK problem.
 TagInfo TagFileManager.getTag(java.lang.String prefix, java.lang.String location)
           
 TagInfo TagFileManager.getTag(java.lang.String prefix, java.lang.String shortName, java.lang.String location)
           
 TagInfo TagFileManager.getTag(java.lang.String location, TagTaglib taglib)
           
 TagInfo TagInstance.getTagInfo()
           
 

Methods in com.caucho.jsp with parameters of type TagInfo
 TagInstance TagInstance.addNewTag(JspGenerator gen, QName tagName, TagInfo tagInfo, java.lang.Class cl, java.util.ArrayList<QName> names, java.util.ArrayList<java.lang.String> values, boolean hasBodyContent)
          Adds a new tag.
 TagInstance TagInstance.addTag(JspGenerator gen, QName tagName, TagInfo tagInfo, java.lang.Class cl, java.util.ArrayList<QName> names, java.util.ArrayList<java.lang.Object> values, boolean hasBodyContent)
          Adds a child tag.
 

Uses of TagInfo in com.caucho.jsp.java
 

Subclasses of TagInfo in com.caucho.jsp.java
 class TagInfoExt
          Information for a tag file.
 

Fields in com.caucho.jsp.java declared as TagInfo
protected  TagInfo GenericTag._tagInfo
           
 

Methods in com.caucho.jsp.java that return TagInfo
abstract  TagInfo JspTagSupport._caucho_getTagInfo(TagLibraryInfo taglib)
           
 TagInfo JavaTagGenerator.generateTagInfo(java.lang.String className, TagLibraryInfo taglib)
           
 TagInfo JavaJspGenerator.getTag(QName qname)
          Returns the tag with the given qname.
 TagInfo GenericTag.getTagInfo()
           
 

Methods in com.caucho.jsp.java with parameters of type TagInfo
 void GenericTag.setTagInfo(TagInfo tagInfo)
           
 

Uses of TagInfo in javax.servlet.jsp.tagext
 

Fields in javax.servlet.jsp.tagext declared as TagInfo
protected  TagInfo[] TagLibraryInfo.tags
           
 

Methods in javax.servlet.jsp.tagext that return TagInfo
 TagInfo TagLibraryInfo.getTag(java.lang.String name)
          Returns the information for a specific tag.
 TagInfo TagExtraInfo.getTagInfo()
          Gets the TLD tag info for this tag.
 TagInfo TagFileInfo.getTagInfo()
          Returns the tag info
 TagInfo[] TagLibraryInfo.getTags()
          Returns an array of all the tags in the library
 

Methods in javax.servlet.jsp.tagext with parameters of type TagInfo
 void TagExtraInfo.setTagInfo(TagInfo tagInfo)
          Sets the TLD tag info for this tag.
 

Constructors in javax.servlet.jsp.tagext with parameters of type TagInfo
TagFileInfo(java.lang.String name, java.lang.String path, TagInfo tagInfo)
          Create a new TagFileInfo.