KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > extensions > xmlformat > XMLHttpAddress


1 package org.objectweb.celtix.tools.extensions.xmlformat;
2
3 import java.io.Serializable JavaDoc;
4
5 import javax.wsdl.extensions.ExtensibilityElement;
6 import javax.xml.namespace.QName JavaDoc;
7
8 import org.w3c.dom.Element JavaDoc;
9
10 public class XMLHttpAddress implements ExtensibilityElement, Serializable JavaDoc {
11
12     private boolean required;
13     private QName JavaDoc elementType;
14     private Element element;
15     private String JavaDoc documentBaseURI;
16
17     private String JavaDoc location;
18
19     public void setRequired(Boolean JavaDoc r) {
20         this.required = r;
21     }
22
23     public Boolean JavaDoc getRequired() {
24         return required;
25     }
26
27     public void setElementType(QName JavaDoc elemType) {
28         this.elementType = elemType;
29     }
30
31     public QName JavaDoc getElementType() {
32         return elementType;
33     }
34
35     public String JavaDoc getDocumentBaseURI() {
36         return documentBaseURI;
37     }
38
39     public void setDocumentBaseURI(String JavaDoc pDocumentBaseURI) {
40         this.documentBaseURI = pDocumentBaseURI;
41     }
42
43     public Element getElement() {
44         return element;
45     }
46
47     public void setElement(Element pElement) {
48         this.element = pElement;
49     }
50
51     public String JavaDoc getLocation() {
52         return location;
53     }
54
55     public void setLocation(String JavaDoc pLocation) {
56         this.location = pLocation;
57     }
58 }
59
Popular Tags