public TagData(Object[][] atts) {
if (atts == null) {
attributes = new Hashtable< String, Object >();
} else {
attributes = new Hashtable< String, Object >(atts.length);
}
if (atts != null) {
for (int i = 0; i < atts.length; i++) {
attributes.put((String) atts[i][0], atts[i][1]);
}
}
}
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.Parameters:
atts - the static attribute and values. May be null.
|