* Return the first OMElement child node
* @see org.apache.axis2.om.OMContainer#getFirstChildWithName(javax.xml.namespace.QName)
*/
public OMElement getFirstChildWithName(QName elementQName)
throws OMException {
Iterator children = new OMChildrenQNameIterator(getFirstOMChild(),
elementQName);
while (children.hasNext()) {
OMNode node = (OMNode) children.next();
//Return the first OMElement node that is found
if(node instanceof OMElement) {
return (OMElement)node;
}