public TagAttributeInfo(String name,
boolean required,
String type,
boolean reqTime) {
this.name = name;
this.required = required;
this.type = type;
this.reqTime = reqTime;
}
Constructor for TagAttributeInfo. This class is to be instantiated only
from the TagLibrary code under request from some JSP code that is parsing
a TLD (Tag Library Descriptor). Parameters:
name -
The name of the attribute.
required -
If this attribute is required in tag instances.
type -
The name of the type of the attribute.
reqTime -
Whether this attribute holds a request-time Attribute.
|
public TagAttributeInfo(String name,
boolean required,
String type,
boolean reqTime,
boolean fragment) {
this(name, required, type, reqTime);
this.fragment = fragment;
}
JSP 2.0 Constructor for TagAttributeInfo. This class is to be
instantiated only from the TagLibrary code under request from some JSP
code that is parsing a TLD (Tag Library Descriptor). Parameters:
name -
The name of the attribute.
required -
If this attribute is required in tag instances.
type -
The name of the type of the attribute.
reqTime -
Whether this attribute holds a request-time Attribute.
fragment -
Whether this attribute is of type JspFragment
- since:
2.0 -
|
public TagAttributeInfo(String name,
boolean required,
String type,
boolean reqTime,
boolean fragment,
String description,
boolean deferredValue,
boolean deferredMethod,
String expectedTypeName,
String methodSignature) {
this(name, required, type, reqTime, fragment);
this.description = description;
this.deferredValue = deferredValue;
this.deferredMethod = deferredMethod;
this.expectedTypeName = expectedTypeName;
this.methodSignature = methodSignature;
}
|