|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SumResponse.java | - | 50% | 50% | 50% |
|
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs | |
3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
4 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
5 | // Generated on: 2007.04.08 at 11:12:05 AM CEST | |
6 | // | |
7 | ||
8 | ||
9 | package jtr.test.jee.arithmetical.client; | |
10 | ||
11 | import javax.xml.bind.annotation.XmlAccessType; | |
12 | import javax.xml.bind.annotation.XmlAccessorType; | |
13 | import javax.xml.bind.annotation.XmlElement; | |
14 | import javax.xml.bind.annotation.XmlType; | |
15 | ||
16 | ||
17 | /** | |
18 | * <p>Java class for sumResponse complex type. | |
19 | * | |
20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
21 | * | |
22 | * <pre> | |
23 | * <complexType name="sumResponse"> | |
24 | * <complexContent> | |
25 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
26 | * <sequence> | |
27 | * <element name="return" type="{http://www.w3.org/2001/XMLSchema}double"/> | |
28 | * </sequence> | |
29 | * </restriction> | |
30 | * </complexContent> | |
31 | * </complexType> | |
32 | * </pre> | |
33 | * | |
34 | * | |
35 | */ | |
36 | @XmlAccessorType(XmlAccessType.FIELD) | |
37 | @XmlType(name = "sumResponse", propOrder = { | |
38 | "_return" | |
39 | }) | |
40 | public class SumResponse { | |
41 | ||
42 | @XmlElement(name = "return") | |
43 | protected double _return; | |
44 | ||
45 | /** | |
46 | * Gets the value of the return property. | |
47 | * | |
48 | */ | |
49 | 6987 | public double getReturn() { |
50 | 6996 | return _return; |
51 | } | |
52 | ||
53 | /** | |
54 | * Sets the value of the return property. | |
55 | * | |
56 | */ | |
57 | 0 | public void setReturn(double value) { |
58 | 0 | this._return = value; |
59 | } | |
60 | ||
61 | } |
|