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.XmlElement; 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 * <complexType> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <sequence> 028 * <element ref="{}packages"/> 029 * <element ref="{}classes"/> 030 * <element ref="{}methods"/> 031 * <element ref="{}srcfiles"/> 032 * <element ref="{}srclines"/> 033 * </sequence> 034 * </restriction> 035 * </complexContent> 036 * </complexType> 037 * </pre> 038 * 039 * 040 */ 041 @XmlAccessorType(XmlAccessType.FIELD) 042 @XmlType(name = "", propOrder = { 043 "packages", 044 "classes", 045 "methods", 046 "srcfiles", 047 "srclines" 048 }) 049 @XmlRootElement(name = "stats") 050 public class Stats { 051 052 @XmlElement(required = true) 053 protected Packages packages; 054 @XmlElement(required = true) 055 protected Classes classes; 056 @XmlElement(required = true) 057 protected Methods methods; 058 @XmlElement(required = true) 059 protected Srcfiles srcfiles; 060 @XmlElement(required = true) 061 protected Srclines srclines; 062 063 /** 064 * Gets the value of the packages property. 065 * 066 * @return 067 * possible object is 068 * {@link Packages } 069 * 070 */ 071 public Packages getPackages() { 072 return packages; 073 } 074 075 /** 076 * Sets the value of the packages property. 077 * 078 * @param value 079 * allowed object is 080 * {@link Packages } 081 * 082 */ 083 public void setPackages(Packages value) { 084 this.packages = value; 085 } 086 087 /** 088 * Gets the value of the classes property. 089 * 090 * @return 091 * possible object is 092 * {@link Classes } 093 * 094 */ 095 public Classes getClasses() { 096 return classes; 097 } 098 099 /** 100 * Sets the value of the classes property. 101 * 102 * @param value 103 * allowed object is 104 * {@link Classes } 105 * 106 */ 107 public void setClasses(Classes value) { 108 this.classes = value; 109 } 110 111 /** 112 * Gets the value of the methods property. 113 * 114 * @return 115 * possible object is 116 * {@link Methods } 117 * 118 */ 119 public Methods getMethods() { 120 return methods; 121 } 122 123 /** 124 * Sets the value of the methods property. 125 * 126 * @param value 127 * allowed object is 128 * {@link Methods } 129 * 130 */ 131 public void setMethods(Methods value) { 132 this.methods = value; 133 } 134 135 /** 136 * Gets the value of the srcfiles property. 137 * 138 * @return 139 * possible object is 140 * {@link Srcfiles } 141 * 142 */ 143 public Srcfiles getSrcfiles() { 144 return srcfiles; 145 } 146 147 /** 148 * Sets the value of the srcfiles property. 149 * 150 * @param value 151 * allowed object is 152 * {@link Srcfiles } 153 * 154 */ 155 public void setSrcfiles(Srcfiles value) { 156 this.srcfiles = value; 157 } 158 159 /** 160 * Gets the value of the srclines property. 161 * 162 * @return 163 * possible object is 164 * {@link Srclines } 165 * 166 */ 167 public Srclines getSrclines() { 168 return srclines; 169 } 170 171 /** 172 * Sets the value of the srclines property. 173 * 174 * @param value 175 * allowed object is 176 * {@link Srclines } 177 * 178 */ 179 public void setSrclines(Srclines value) { 180 this.srclines = value; 181 } 182 183 }