FileDocCategorySizeDatePackage
JasperTagInfo.javaAPI DocApache Tomcat 6.0.142003Fri Jul 20 04:20:36 BST 2007org.apache.jasper.compiler

JasperTagInfo

public class JasperTagInfo extends TagInfo
TagInfo extension used by tag handlers that are implemented via tag files. This class provides access to the name of the Map used to store the dynamic attribute names and values passed to the custom action invocation. This information is used by the code generator.

Fields Summary
private String
dynamicAttrsMapName
Constructors Summary
public JasperTagInfo(String tagName, String tagClassName, String bodyContent, String infoString, TagLibraryInfo taglib, TagExtraInfo tagExtraInfo, TagAttributeInfo[] attributeInfo, String displayName, String smallIcon, String largeIcon, TagVariableInfo[] tvi, String mapName)


	super(tagName, tagClassName, bodyContent, infoString, taglib,
	      tagExtraInfo, attributeInfo, displayName, smallIcon, largeIcon,
	      tvi);
	this.dynamicAttrsMapName = mapName;
    
Methods Summary
public java.lang.StringgetDynamicAttributesMapName()

	return dynamicAttrsMapName;
    
public booleanhasDynamicAttributes()

        return dynamicAttrsMapName != null;