String tagName =
DOMUtils.getQualifiedValue(Constants.NS_URI_WSDL20,
Constants.ELEM_DOCUMENTATION,
def);
for(int ind=0;ind<docEles.length;ind++){
DocumentationElement docEle =docEles[ind] ;
if (docEle!=null){
pw.print(" <" + tagName);
// TODO
//chek is documentation requred these two methods
//printExtensibilityAttributes(Operation.class, docEles.get, def, pw);
pw.println('>');
Object o = docEle.getContent().getSource();
org.w3c.dom.Element domEl = (org.w3c.dom.Element)o;
/*
* This is not enough to handle DocumentationElement
* with nested DocumentationElements,if it is required
* a recursive method based on getNodeType()