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 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.XmlAnyElement;
016    import javax.xml.bind.annotation.XmlRootElement;
017    import javax.xml.bind.annotation.XmlType;
018    import org.w3c.dom.Element;
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;any/>
032     *       &lt;/sequence>
033     *     &lt;/restriction>
034     *   &lt;/complexContent>
035     * &lt;/complexType>
036     * </pre>
037     * 
038     * 
039     */
040    @XmlAccessorType(XmlAccessType.FIELD)
041    @XmlType(name = "", propOrder = {
042        "any"
043    })
044    @XmlRootElement(name = "table")
045    public class Table {
046    
047        @XmlAnyElement
048        protected List<Element> any;
049    
050        /**
051         * Gets the value of the any property.
052         * 
053         * <p>
054         * This accessor method returns a reference to the live list,
055         * not a snapshot. Therefore any modification you make to the
056         * returned list will be present inside the JAXB object.
057         * This is why there is not a <CODE>set</CODE> method for the any property.
058         * 
059         * <p>
060         * For example, to add a new item, do as follows:
061         * <pre>
062         *    getAny().add(newItem);
063         * </pre>
064         * 
065         * 
066         * <p>
067         * Objects of the following type(s) are allowed in the list
068         * {@link Element }
069         * 
070         * 
071         */
072        public List<Element> getAny() {
073            if (any == null) {
074                any = new ArrayList<Element>();
075            }
076            return this.any;
077        }
078    
079    }