|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| Sum.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.XmlType; | |
| 14 | ||
| 15 | ||
| 16 | /** | |
| 17 | * <p>Java class for sum complex type. | |
| 18 | * | |
| 19 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 20 | * | |
| 21 | * <pre> | |
| 22 | * <complexType name="sum"> | |
| 23 | * <complexContent> | |
| 24 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 25 | * <sequence> | |
| 26 | * <element name="x" type="{http://www.w3.org/2001/XMLSchema}double"/> | |
| 27 | * <element name="y" 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 = "sum", propOrder = { | |
| 38 | "x", | |
| 39 | "y" | |
| 40 | }) | |
| 41 | public class Sum { | |
| 42 | ||
| 43 | protected double x; | |
| 44 | protected double y; | |
| 45 | ||
| 46 | /** | |
| 47 | * Gets the value of the x property. | |
| 48 | * | |
| 49 | */ | |
| 50 | 0 | public double getX() { |
| 51 | 0 | return x; |
| 52 | } | |
| 53 | ||
| 54 | /** | |
| 55 | * Sets the value of the x property. | |
| 56 | * | |
| 57 | */ | |
| 58 | 3500 | public void setX(double value) { |
| 59 | 3500 | this.x = value; |
| 60 | } | |
| 61 | ||
| 62 | /** | |
| 63 | * Gets the value of the y property. | |
| 64 | * | |
| 65 | */ | |
| 66 | 0 | public double getY() { |
| 67 | 0 | return y; |
| 68 | } | |
| 69 | ||
| 70 | /** | |
| 71 | * Sets the value of the y property. | |
| 72 | * | |
| 73 | */ | |
| 74 | 3500 | public void setY(double value) { |
| 75 | 3500 | this.y = value; |
| 76 | } | |
| 77 | ||
| 78 | } |
|
||||||||||