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