1 2 29 30 package com.caucho.soap.wsdl; 31 32 import javax.xml.bind.annotation.XmlAccessType; 33 import javax.xml.bind.annotation.XmlAccessorType; 34 import javax.xml.bind.annotation.XmlAttribute; 35 36 39 @XmlAccessorType(XmlAccessType.FIELD) 40 public abstract class WSDLNamedExtensibleDocumented 41 extends WSDLExtensibleDocumented 42 { 43 @XmlAttribute(required=true, name="name") 44 private String _name; 45 46 49 public void setName(String name) 50 { 51 _name = name; 52 } 53 54 57 public String getName() 58 { 59 return _name; 60 } 61 } 62 | Popular Tags |