public static class NewXmlAttribute extends ROperator {
NewXmlAttribute(){super("newxmlattribute"); }
@Override
public void arrayExecute(DTState state) throws RulesException {
RName name = state.datapop().rNameValue();
XMLTag xmlNode = new XMLTag(name.stringValue(),null);
RXmlValue xmlValue = new RXmlValue(state,xmlNode);
state.datapush(xmlValue);
}