Example usage for javax.servlet.jsp.tagext TagInfo TagInfo

List of usage examples for javax.servlet.jsp.tagext TagInfo TagInfo

Introduction

In this page you can find the example usage for javax.servlet.jsp.tagext TagInfo TagInfo.

Prototype

public TagInfo(String tagName, String tagClassName, String bodycontent, String infoString,
        TagLibraryInfo taglib, TagExtraInfo tagExtraInfo, TagAttributeInfo[] attributeInfo) 

Source Link

Document

Constructor for TagInfo from data in the JSP 1.1 format for TLD.

Usage

From source file:de.micromata.genome.gwiki.page.gspt.taglibs.TagLibraryInfoImpl.java

void rework() {
    super.tags = new TagInfo[tmpTags.size()];
    for (int i = 0; i < super.tags.length; ++i) {
        TagTmpInfo tt = tmpTags.get(i);/*from  ww w  . java 2s  .  c om*/
        super.tags[i] = new TagInfo(tt.tagName, tt.tagClassName, tt.bodycontent, tt.infoString, this, null,
                tt.getAttributeArray());
    }
}