|
JavaTM 2 Platform Ent. Ed. v1.4 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.servlet.jsp.tagext.TagData
The (translation-time only) attribute/value information for a tag instance.
TagData is only used as an argument to the isValid, validate, and getVariableInfo methods of TagExtraInfo, which are invoked at translation time.
| Field Summary | |
static Object |
REQUEST_TIME_VALUE
Distinguished value for an attribute to indicate its value is a request-time expression (which is not yet available because TagData instances are used at translation-time). |
| Constructor Summary | |
TagData(Hashtable attrs)
Constructor for a TagData. |
|
TagData(Object[][] atts)
Constructor for TagData. |
|
| Method Summary | |
Object |
getAttribute(String attName)
The value of the attribute. |
Enumeration |
getAttributes()
Enumerates the attributes. |
String |
getAttributeString(String attName)
Get the value for a given attribute. |
String |
getId()
The value of the tag's id attribute. |
void |
setAttribute(String attName,
Object value)
Set the value of an attribute. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public static final Object REQUEST_TIME_VALUE
| Constructor Detail |
public TagData(Object[][] atts)
A typical constructor may be
static final Object[][] att = {{"connection", "conn0"}, {"id", "query0"}};
static final TagData td = new TagData(att);
All values must be Strings except for those holding the
distinguished object REQUEST_TIME_VALUE.
atts - the static attribute and values. May be null.public TagData(Hashtable attrs)
attrs - A hashtable to get the values from.| Method Detail |
public String getId()
public Object getAttribute(String attName)
attName - the name of the attribute
public void setAttribute(String attName, Object value)
attName - the name of the attributevalue - the value.public String getAttributeString(String attName)
attName - the name of the attribute
ClassCastException - if attribute value is not a Stringpublic Enumeration getAttributes()
|
JavaTM 2 Platform Ent. Ed. v1.4 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved.