Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 78   Methods: 4
NCLOC: 25   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Sum.java - 50% 50% 50%
coverage coverage
 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    * &lt;complexType name="sum">
 23    * &lt;complexContent>
 24    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 25    * &lt;sequence>
 26    * &lt;element name="x" type="{http://www.w3.org/2001/XMLSchema}double"/>
 27    * &lt;element name="y" type="{http://www.w3.org/2001/XMLSchema}double"/>
 28    * &lt;/sequence>
 29    * &lt;/restriction>
 30    * &lt;/complexContent>
 31    * &lt;/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    }