public void processValue(CharSequence value, XPathContext context) throws XPathException {
//String comment = expandChildren(context).toString();
String comment = checkContent(value.toString(), context);
SequenceReceiver out = context.getReceiver();
out.comment(comment, locationId, 0);
}
/**
* Check the content of the node, and adjust it if necessary
*