KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > soap > impl > llom > SOAPTextImpl


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 /**
8  * Copyright 2001-2004 The Apache Software Foundation.
9  * <p/>
10  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
11  * use this file except in compliance with the License. You may obtain a copy of
12  * the License at
13  * <p/>
14  * http://www.apache.org/licenses/LICENSE-2.0
15  * <p/>
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19  * License for the specific language governing permissions and limitations under
20  * the License.
21  * <p/>
22  */

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 JavaDoc lang) {
34         // TODO : Chinthaka fix me
35
}
36
37     public String JavaDoc getLang() {
38         // TODO Chinthaka fix me
39
return null;
40     }
41
42     protected void checkParent(OMElement parent) throws SOAPProcessingException {
43         // do nothing
44
}
45 }
46
Popular Tags