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