public bool Match(org.w3c.dom.Element element) {
    if(element != null) {
       Node value = element.getFirstChild();
       if(value instanceof CDATASection) {
          return value != null && value.getNodeValue().equals(text);
       }
       return false;
    }
    return false;
 }
 public bool Match(org.w3c.dom.Element element) {
    if(element != null) {
       Node value = element.getFirstChild();
       return value != null && value.getNodeValue().equals(text);
    }
    return false;
 }