Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 121   Methods: 6
NCLOC: 33   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IncrementMultResult.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: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    * &lt;complexType name="incrementMultResult">
 23    * &lt;complexContent>
 24    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 25    * &lt;sequence>
 26    * &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 27    * &lt;element name="arg1" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 28    * &lt;element name="arg2" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 29    * &lt;/sequence>
 30    * &lt;/restriction>
 31    * &lt;/complexContent>
 32    * &lt;/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    }