|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
IncrementMultResult.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:11:24 AM CEST | |
6 | // | |
7 | ||
8 | ||
9 | package jtr.test.jee.ping.client; | |
10 | ||
11 | import javax.xml.bind.annotation.XmlAccessType; | |
12 | import javax.xml.bind.annotation.XmlAccessorType; | |
13 | import javax.xml.bind.annotation.XmlType; | |
14 | ||
15 | ||
16 | /** | |
17 | * <p>Java class for incrementMultResult complex type. | |
18 | * | |
19 | * <p>The following schema fragment specifies the expected content contained within this class. | |
20 | * | |
21 | * <pre> | |
22 | * <complexType name="incrementMultResult"> | |
23 | * <complexContent> | |
24 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
25 | * <sequence> | |
26 | * <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> | |
27 | * <element name="arg1" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> | |
28 | * <element name="arg2" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> | |
29 | * </sequence> | |
30 | * </restriction> | |
31 | * </complexContent> | |
32 | * </complexType> | |
33 | * </pre> | |
34 | * | |
35 | * | |
36 | */ | |
37 | @XmlAccessorType(XmlAccessType.FIELD) | |
38 | @XmlType(name = "incrementMultResult", propOrder = { | |
39 | "arg0", | |
40 | "arg1", | |
41 | "arg2" | |
42 | }) | |
43 | public class IncrementMultResult { | |
44 | ||
45 | protected Double arg0; | |
46 | protected Double arg1; | |
47 | protected Double arg2; | |
48 | ||
49 | /** | |
50 | * Gets the value of the arg0 property. | |
51 | * | |
52 | * @return | |
53 | * possible object is | |
54 | * {@link Double } | |
55 | * | |
56 | */ | |
57 | 0 | public Double getArg0() { |
58 | 0 | return arg0; |
59 | } | |
60 | ||
61 | /** | |
62 | * Sets the value of the arg0 property. | |
63 | * | |
64 | * @param value | |
65 | * allowed object is | |
66 | * {@link Double } | |
67 | * | |
68 | */ | |
69 | 2000 | public void setArg0(Double value) { |
70 | 2000 | this.arg0 = value; |
71 | } | |
72 | ||
73 | /** | |
74 | * Gets the value of the arg1 property. | |
75 | * | |
76 | * @return | |
77 | * possible object is | |
78 | * {@link Double } | |
79 | * | |
80 | */ | |
81 | 0 | public Double getArg1() { |
82 | 0 | return arg1; |
83 | } | |
84 | ||
85 | /** | |
86 | * Sets the value of the arg1 property. | |
87 | * | |
88 | * @param value | |
89 | * allowed object is | |
90 | * {@link Double } | |
91 | * | |
92 | */ | |
93 | 2000 | public void setArg1(Double value) { |
94 | 2000 | this.arg1 = value; |
95 | } | |
96 | ||
97 | /** | |
98 | * Gets the value of the arg2 property. | |
99 | * | |
100 | * @return | |
101 | * possible object is | |
102 | * {@link Double } | |
103 | * | |
104 | */ | |
105 | 0 | public Double getArg2() { |
106 | 0 | return arg2; |
107 | } | |
108 | ||
109 | /** | |
110 | * Sets the value of the arg2 property. | |
111 | * | |
112 | * @param value | |
113 | * allowed object is | |
114 | * {@link Double } | |
115 | * | |
116 | */ | |
117 | 2000 | public void setArg2(Double value) { |
118 | 2000 | this.arg2 = value; |
119 | } | |
120 | ||
121 | } |
|