return NodeKindTest.TEXT;
}
public void prepareAttributes() throws XPathException {
AttributeCollection atts = getAttributeList();
String selectAtt = null;
String valueAtt = null;
String countAtt = null;
String fromAtt = null;
String levelAtt = null;
String formatAtt = null;
String gsizeAtt = null;
String gsepAtt = null;
String langAtt = null;
String letterValueAtt = null;
String ordinalAtt = null;
for (int a=0; a<atts.getLength(); a++) {
int nc = atts.getNameCode(a);
String f = getNamePool().getClarkName(nc);
if (f.equals(StandardNames.SELECT)) {
selectAtt = atts.getValue(a);
} else if (f.equals(StandardNames.VALUE)) {
valueAtt = atts.getValue(a);
} else if (f.equals(StandardNames.COUNT)) {
countAtt = atts.getValue(a);
} else if (f.equals(StandardNames.FROM)) {
fromAtt = atts.getValue(a);
} else if (f.equals(StandardNames.LEVEL)) {
levelAtt = Whitespace.trim(atts.getValue(a));
} else if (f.equals(StandardNames.FORMAT)) {
formatAtt = atts.getValue(a);
} else if (f.equals(StandardNames.LANG)) {
langAtt = atts.getValue(a);
} else if (f.equals(StandardNames.LETTER_VALUE)) {
letterValueAtt = Whitespace.trim(atts.getValue(a));
} else if (f.equals(StandardNames.GROUPING_SIZE)) {
gsizeAtt = Whitespace.trim(atts.getValue(a));
} else if (f.equals(StandardNames.GROUPING_SEPARATOR)) {
gsepAtt = atts.getValue(a);
} else if (f.equals(StandardNames.ORDINAL)) {
ordinalAtt = atts.getValue(a);
} else {
checkUnknownAttribute(nc);
}
}