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:56 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensor.ant.clover.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.XmlElement; 015 import javax.xml.bind.annotation.XmlRootElement; 016 import javax.xml.bind.annotation.XmlType; 017 018 019 /** 020 * <p>Java class for anonymous complex type. 021 * 022 * <p>The following schema fragment specifies the expected content contained within this class. 023 * 024 * <pre> 025 * <complexType> 026 * <complexContent> 027 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 028 * <sequence> 029 * <element ref="{}project"/> 030 * <element ref="{}testproject"/> 031 * </sequence> 032 * <attribute name="generated" type="{http://www.w3.org/2001/XMLSchema}int" /> 033 * </restriction> 034 * </complexContent> 035 * </complexType> 036 * </pre> 037 * 038 * 039 */ 040 @XmlAccessorType(XmlAccessType.FIELD) 041 @XmlType(name = "", propOrder = { 042 "project", 043 "testproject" 044 }) 045 @XmlRootElement(name = "coverage") 046 public class Coverage { 047 048 @XmlElement(required = true) 049 protected Project project; 050 @XmlElement(required = true) 051 protected Testproject testproject; 052 @XmlAttribute 053 protected Integer generated; 054 055 /** 056 * Gets the value of the project property. 057 * 058 * @return 059 * possible object is 060 * {@link Project } 061 * 062 */ 063 public Project getProject() { 064 return project; 065 } 066 067 /** 068 * Sets the value of the project property. 069 * 070 * @param value 071 * allowed object is 072 * {@link Project } 073 * 074 */ 075 public void setProject(Project value) { 076 this.project = value; 077 } 078 079 /** 080 * Gets the value of the testproject property. 081 * 082 * @return 083 * possible object is 084 * {@link Testproject } 085 * 086 */ 087 public Testproject getTestproject() { 088 return testproject; 089 } 090 091 /** 092 * Sets the value of the testproject property. 093 * 094 * @param value 095 * allowed object is 096 * {@link Testproject } 097 * 098 */ 099 public void setTestproject(Testproject value) { 100 this.testproject = value; 101 } 102 103 /** 104 * Gets the value of the generated property. 105 * 106 * @return 107 * possible object is 108 * {@link Integer } 109 * 110 */ 111 public Integer getGenerated() { 112 return generated; 113 } 114 115 /** 116 * Sets the value of the generated property. 117 * 118 * @param value 119 * allowed object is 120 * {@link Integer } 121 * 122 */ 123 public void setGenerated(Integer value) { 124 this.generated = value; 125 } 126 127 }