1 package org.apache.axis2.soap.impl.llom; 2 3 import org.apache.axis2.om.OMElement; 4 import org.apache.axis2.om.OMXMLParserWrapper; 5 import org.apache.axis2.soap.impl.llom.soap12.SOAP12Constants; 6 7 23 public class SOAPTextImpl extends SOAPElement{ 24 25 protected SOAPTextImpl(OMElement parent) throws SOAPProcessingException { 26 super(parent, SOAP12Constants.SOAP_FAULT_TEXT_LOCAL_NAME, true); 27 } 28 29 protected SOAPTextImpl(OMElement parent, OMXMLParserWrapper builder) { 30 super(parent, SOAP12Constants.SOAP_FAULT_TEXT_LOCAL_NAME, builder); 31 } 32 33 public void setLang(String lang) { 34 } 36 37 public String getLang() { 38 return null; 40 } 41 42 protected void checkParent(OMElement parent) throws SOAPProcessingException { 43 } 45 } 46 | Popular Tags |