// // Generated By:JAX-WS RI IBM 2.1.1 in JDK 6 (JAXB RI IBM JAXB 2.1.3 in JDK 1.6) // package calculator.jaxws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlRootElement(name = "addResponse", namespace = "http://calculator/") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "addResponse", namespace = "http://calculator/") public class AddResponse { @XmlElement(name = "return", namespace = "") private double _return; /** * * @return * returns double */ public double getReturn() { return this._return; } /** * * @param _return * the value for the _return property */ public void setReturn(double _return) { this._return = _return; } }