1 28 29 package com.caucho.soap.wsdl; 30 31 import javax.xml.bind.annotation.XmlAccessType; 32 import javax.xml.bind.annotation.XmlAccessorType; 33 import javax.xml.bind.annotation.XmlAttribute; 34 import javax.xml.bind.annotation.XmlRootElement; 35 import javax.xml.namespace.QName ; 36 37 40 @XmlAccessorType(XmlAccessType.FIELD) 41 @XmlRootElement(name="part", namespace="http://schemas.xmlsoap.org/wsdl/") 42 public class WSDLPart extends WSDLNamedExtensibleAttributeDocumented { 43 @XmlAttribute(name="type") 44 private QName _type; 45 46 @XmlAttribute(name="element") 47 private QName _element; 48 49 52 public void setType(QName type) 53 { 54 _type = type; 55 } 56 57 public QName getType() 58 { 59 return _type; 60 } 61 62 65 public void setElement(QName element) 66 { 67 _element = element; 68 } 69 70 public QName getElement() 71 { 72 return _element; 73 } 74 } 75 | Popular Tags |