return NodeKindTest.TEXT;
}
public void prepareAttributes() throws TransformerConfigurationException {
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==StandardNames.SELECT) {
selectAtt = atts.getValue(a);
} else if (f==StandardNames.VALUE) {
valueAtt = atts.getValue(a);
} else if (f==StandardNames.COUNT) {
countAtt = atts.getValue(a);
} else if (f==StandardNames.FROM) {
fromAtt = atts.getValue(a);
} else if (f==StandardNames.LEVEL) {
levelAtt = atts.getValue(a).trim();
} else if (f==StandardNames.FORMAT) {
formatAtt = atts.getValue(a);
} else if (f==StandardNames.LANG) {
langAtt = atts.getValue(a);
} else if (f==StandardNames.LETTER_VALUE) {
letterValueAtt = atts.getValue(a).trim();
} else if (f==StandardNames.GROUPING_SIZE) {
gsizeAtt = atts.getValue(a).trim();
} else if (f==StandardNames.GROUPING_SEPARATOR) {
gsepAtt = atts.getValue(a);
} else if (f==StandardNames.ORDINAL) {
ordinalAtt = atts.getValue(a);
} else {
checkUnknownAttribute(nc);
}
}