001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2008.01.25 at 09:11:53 AM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.sensor.ant.emma.jaxb;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlAttribute;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlType;
016    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;attribute ref="{}type"/>
028     *       &lt;attribute ref="{}value"/>
029     *     &lt;/restriction>
030     *   &lt;/complexContent>
031     * &lt;/complexType>
032     * </pre>
033     * 
034     * 
035     */
036    @XmlAccessorType(XmlAccessType.FIELD)
037    @XmlType(name = "")
038    @XmlRootElement(name = "coverage")
039    public class Coverage {
040    
041        @XmlAttribute
042        protected String type;
043        @XmlAttribute
044        protected String value;
045    
046        /**
047         * Gets the value of the type property.
048         * 
049         * @return
050         *     possible object is
051         *     {@link String }
052         *     
053         */
054        public String getType() {
055            return type;
056        }
057    
058        /**
059         * Sets the value of the type property.
060         * 
061         * @param value
062         *     allowed object is
063         *     {@link String }
064         *     
065         */
066        public void setType(String value) {
067            this.type = value;
068        }
069    
070        /**
071         * Gets the value of the value property.
072         * 
073         * @return
074         *     possible object is
075         *     {@link String }
076         *     
077         */
078        public String getValue() {
079            return value;
080        }
081    
082        /**
083         * Sets the value of the value property.
084         * 
085         * @param value
086         *     allowed object is
087         *     {@link String }
088         *     
089         */
090        public void setValue(String value) {
091            this.value = value;
092        }
093    
094    }