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.03.24 at 05:35:12 PM HST 
006    //
007    
008    
009    package org.hackystat.sensor.ant.dependencyfinder.jaxb;
010    
011    import java.util.ArrayList;
012    import java.util.List;
013    import javax.xml.bind.annotation.XmlAccessType;
014    import javax.xml.bind.annotation.XmlAccessorType;
015    import javax.xml.bind.annotation.XmlAttribute;
016    import javax.xml.bind.annotation.XmlElement;
017    import javax.xml.bind.annotation.XmlRootElement;
018    import javax.xml.bind.annotation.XmlType;
019    
020    
021    /**
022     * <p>Java class for anonymous complex type.
023     * 
024     * <p>The following schema fragment specifies the expected content contained within this class.
025     * 
026     * <pre>
027     * &lt;complexType>
028     *   &lt;complexContent>
029     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
030     *       &lt;sequence>
031     *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
032     *         &lt;element ref="{}class" maxOccurs="unbounded" minOccurs="0"/>
033     *       &lt;/sequence>
034     *       &lt;attribute name="confirmed" type="{http://www.w3.org/2001/XMLSchema}string" />
035     *     &lt;/restriction>
036     *   &lt;/complexContent>
037     * &lt;/complexType>
038     * </pre>
039     * 
040     * 
041     */
042    @XmlAccessorType(XmlAccessType.FIELD)
043    @XmlType(name = "", propOrder = {
044        "name",
045        "clazz"
046    })
047    @XmlRootElement(name = "package")
048    public class Package {
049    
050        @XmlElement(required = true)
051        protected String name;
052        @XmlElement(name = "class")
053        protected List<Class> clazz;
054        @XmlAttribute
055        protected String confirmed;
056    
057        /**
058         * Gets the value of the name property.
059         * 
060         * @return
061         *     possible object is
062         *     {@link String }
063         *     
064         */
065        public String getName() {
066            return name;
067        }
068    
069        /**
070         * Sets the value of the name property.
071         * 
072         * @param value
073         *     allowed object is
074         *     {@link String }
075         *     
076         */
077        public void setName(String value) {
078            this.name = value;
079        }
080    
081        /**
082         * Gets the value of the clazz property.
083         * 
084         * <p>
085         * This accessor method returns a reference to the live list,
086         * not a snapshot. Therefore any modification you make to the
087         * returned list will be present inside the JAXB object.
088         * This is why there is not a <CODE>set</CODE> method for the clazz property.
089         * 
090         * <p>
091         * For example, to add a new item, do as follows:
092         * <pre>
093         *    getClazz().add(newItem);
094         * </pre>
095         * 
096         * 
097         * <p>
098         * Objects of the following type(s) are allowed in the list
099         * {@link Class }
100         * 
101         * 
102         */
103        public List<Class> getClazz() {
104            if (clazz == null) {
105                clazz = new ArrayList<Class>();
106            }
107            return this.clazz;
108        }
109    
110        /**
111         * Gets the value of the confirmed property.
112         * 
113         * @return
114         *     possible object is
115         *     {@link String }
116         *     
117         */
118        public String getConfirmed() {
119            return confirmed;
120        }
121    
122        /**
123         * Sets the value of the confirmed property.
124         * 
125         * @param value
126         *     allowed object is
127         *     {@link String }
128         *     
129         */
130        public void setConfirmed(String value) {
131            this.confirmed = value;
132        }
133    
134    }