Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 67   Methods: 2
NCLOC: 17   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Ping.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 ping complex type.
 18    *
 19    * <p>The following schema fragment specifies the expected content contained within this class.
 20    *
 21    * <pre>
 22    * &lt;complexType name="ping">
 23    * &lt;complexContent>
 24    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 25    * &lt;sequence>
 26    * &lt;element name="pinger" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 27    * &lt;/sequence>
 28    * &lt;/restriction>
 29    * &lt;/complexContent>
 30    * &lt;/complexType>
 31    * </pre>
 32    *
 33    *
 34    */
 35    @XmlAccessorType(XmlAccessType.FIELD)
 36    @XmlType(name = "ping", propOrder = {
 37    "pinger"
 38    })
 39    public class Ping {
 40   
 41    protected String pinger;
 42   
 43    /**
 44    * Gets the value of the pinger property.
 45    *
 46    * @return
 47    * possible object is
 48    * {@link String }
 49    *
 50    */
 51  0 public String getPinger() {
 52  0 return pinger;
 53    }
 54   
 55    /**
 56    * Sets the value of the pinger property.
 57    *
 58    * @param value
 59    * allowed object is
 60    * {@link String }
 61    *
 62    */
 63  2000 public void setPinger(String value) {
 64  2000 this.pinger = value;
 65    }
 66   
 67    }