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.07.28 at 12:01:59 PM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.dailyprojectdata.resource.coupling.jaxb;
010    
011    import java.io.Serializable;
012    import java.util.ArrayList;
013    import java.util.List;
014    import javax.xml.bind.annotation.XmlAccessType;
015    import javax.xml.bind.annotation.XmlAccessorType;
016    import javax.xml.bind.annotation.XmlAttribute;
017    import javax.xml.bind.annotation.XmlElement;
018    import javax.xml.bind.annotation.XmlRootElement;
019    import javax.xml.bind.annotation.XmlSchemaType;
020    import javax.xml.bind.annotation.XmlType;
021    import javax.xml.datatype.XMLGregorianCalendar;
022    
023    
024    /**
025     * <p>Java class for anonymous complex type.
026     * 
027     * <p>The following schema fragment specifies the expected content contained within this class.
028     * 
029     * <pre>
030     * &lt;complexType>
031     *   &lt;complexContent>
032     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
033     *       &lt;sequence>
034     *         &lt;element ref="{}CouplingData" maxOccurs="unbounded" minOccurs="0"/>
035     *       &lt;/sequence>
036     *       &lt;attribute ref="{}Project use="required""/>
037     *       &lt;attribute ref="{}Owner use="required""/>
038     *       &lt;attribute ref="{}StartTime use="required""/>
039     *       &lt;attribute ref="{}Tool use="required""/>
040     *       &lt;attribute ref="{}Type use="required""/>
041     *     &lt;/restriction>
042     *   &lt;/complexContent>
043     * &lt;/complexType>
044     * </pre>
045     * 
046     * 
047     */
048    @XmlAccessorType(XmlAccessType.FIELD)
049    @XmlType(name = "", propOrder = {
050        "couplingData"
051    })
052    @XmlRootElement(name = "CouplingDailyProjectData")
053    public class CouplingDailyProjectData
054        implements Serializable
055    {
056    
057        private final static long serialVersionUID = 12343L;
058        @XmlElement(name = "CouplingData")
059        protected List<CouplingData> couplingData;
060        @XmlAttribute(name = "Project", required = true)
061        protected String project;
062        @XmlAttribute(name = "Owner", required = true)
063        protected String owner;
064        @XmlAttribute(name = "StartTime", required = true)
065        @XmlSchemaType(name = "dateTime")
066        protected XMLGregorianCalendar startTime;
067        @XmlAttribute(name = "Tool", required = true)
068        protected String tool;
069        @XmlAttribute(name = "Type", required = true)
070        protected String type;
071    
072        /**
073         * Gets the value of the couplingData property.
074         * 
075         * <p>
076         * This accessor method returns a reference to the live list,
077         * not a snapshot. Therefore any modification you make to the
078         * returned list will be present inside the JAXB object.
079         * This is why there is not a <CODE>set</CODE> method for the couplingData property.
080         * 
081         * <p>
082         * For example, to add a new item, do as follows:
083         * <pre>
084         *    getCouplingData().add(newItem);
085         * </pre>
086         * 
087         * 
088         * <p>
089         * Objects of the following type(s) are allowed in the list
090         * {@link CouplingData }
091         * 
092         * 
093         */
094        public List<CouplingData> getCouplingData() {
095            if (couplingData == null) {
096                couplingData = new ArrayList<CouplingData>();
097            }
098            return this.couplingData;
099        }
100    
101        public boolean isSetCouplingData() {
102            return ((this.couplingData!= null)&&(!this.couplingData.isEmpty()));
103        }
104    
105        public void unsetCouplingData() {
106            this.couplingData = null;
107        }
108    
109        /**
110         * Gets the value of the project property.
111         * 
112         * @return
113         *     possible object is
114         *     {@link String }
115         *     
116         */
117        public String getProject() {
118            return project;
119        }
120    
121        /**
122         * Sets the value of the project property.
123         * 
124         * @param value
125         *     allowed object is
126         *     {@link String }
127         *     
128         */
129        public void setProject(String value) {
130            this.project = value;
131        }
132    
133        public boolean isSetProject() {
134            return (this.project!= null);
135        }
136    
137        /**
138         * Gets the value of the owner property.
139         * 
140         * @return
141         *     possible object is
142         *     {@link String }
143         *     
144         */
145        public String getOwner() {
146            return owner;
147        }
148    
149        /**
150         * Sets the value of the owner property.
151         * 
152         * @param value
153         *     allowed object is
154         *     {@link String }
155         *     
156         */
157        public void setOwner(String value) {
158            this.owner = value;
159        }
160    
161        public boolean isSetOwner() {
162            return (this.owner!= null);
163        }
164    
165        /**
166         * Gets the value of the startTime property.
167         * 
168         * @return
169         *     possible object is
170         *     {@link XMLGregorianCalendar }
171         *     
172         */
173        public XMLGregorianCalendar getStartTime() {
174            return startTime;
175        }
176    
177        /**
178         * Sets the value of the startTime property.
179         * 
180         * @param value
181         *     allowed object is
182         *     {@link XMLGregorianCalendar }
183         *     
184         */
185        public void setStartTime(XMLGregorianCalendar value) {
186            this.startTime = value;
187        }
188    
189        public boolean isSetStartTime() {
190            return (this.startTime!= null);
191        }
192    
193        /**
194         * Gets the value of the tool property.
195         * 
196         * @return
197         *     possible object is
198         *     {@link String }
199         *     
200         */
201        public String getTool() {
202            return tool;
203        }
204    
205        /**
206         * Sets the value of the tool property.
207         * 
208         * @param value
209         *     allowed object is
210         *     {@link String }
211         *     
212         */
213        public void setTool(String value) {
214            this.tool = value;
215        }
216    
217        public boolean isSetTool() {
218            return (this.tool!= null);
219        }
220    
221        /**
222         * Gets the value of the type property.
223         * 
224         * @return
225         *     possible object is
226         *     {@link String }
227         *     
228         */
229        public String getType() {
230            return type;
231        }
232    
233        /**
234         * Sets the value of the type property.
235         * 
236         * @param value
237         *     allowed object is
238         *     {@link String }
239         *     
240         */
241        public void setType(String value) {
242            this.type = value;
243        }
244    
245        public boolean isSetType() {
246            return (this.type!= null);
247        }
248    
249    }