protected SOAPElement(OMElement parent,
String localName,
boolean extractNamespaceFromParent) throws SOAPProcessingException {
super((ParentNode)parent, localName, null);
if (parent == null) {
throw new SOAPProcessingException(
" Can not create " + localName +
" element without a parent !!");
}
checkParent(parent);