showExemple(xpath + "text()");
//parcoure des ATTRIBUE
NamedNodeMap nnm = n.getAttributes();
for (int i = 0; i < nnm.getLength(); i++) {
XMLAttr att = (XMLAttr) nnm.item(i);
showExemple(xpath + "@"+att.getExpandedName());
}
//parcoure des nodes
NodeList nl = n.getChildNodes();