|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.servlet.jsp.tagext.TagVariableInfo
public class TagVariableInfo
Variable information for a tag in a Tag Library; This class is instantiated from the Tag Library Descriptor file (TLD) and is available only at translation time. This object should be immutable. This information is only available in JSP 1.2 format TLDs or above.
Field Summary | |
---|---|
private String |
className
|
private boolean |
declare
|
private String |
nameFromAttribute
|
private String |
nameGiven
|
private int |
scope
|
Constructor Summary | |
---|---|
TagVariableInfo(String nameGiven,
String nameFromAttribute,
String className,
boolean declare,
int scope)
Constructor for TagVariableInfo. |
Method Summary | |
---|---|
String |
getClassName()
The body of the <variable-class> element. |
boolean |
getDeclare()
The body of the <declare> element. |
String |
getNameFromAttribute()
The body of the <name-from-attribute> element. |
String |
getNameGiven()
The body of the <name-given> element. |
int |
getScope()
The body of the <scope> element. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private String nameGiven
private String nameFromAttribute
private String className
private boolean declare
private int scope
Constructor Detail |
---|
public TagVariableInfo(String nameGiven, String nameFromAttribute, String className, boolean declare, int scope)
nameGiven
- value of <name-given>nameFromAttribute
- value of <name-from-attribute>className
- value of <variable-class>declare
- value of <declare>scope
- value of <scope>Method Detail |
---|
public String getNameGiven()
public String getNameFromAttribute()
public String getClassName()
public boolean getDeclare()
public int getScope()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |