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.12.02 at 08:59:01 AM HST 
006    //
007    
008    
009    package org.hackystat.tickertape.tickerlingua.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.XmlElement;
016    import javax.xml.bind.annotation.XmlRootElement;
017    import javax.xml.bind.annotation.XmlType;
018    
019    
020    /**
021     * <p>Java class for anonymous complex type.
022     * 
023     * <p>The following schema fragment specifies the expected content contained within this class.
024     * 
025     * <pre>
026     * &lt;complexType>
027     *   &lt;complexContent>
028     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
029     *       &lt;sequence>
030     *         &lt;element ref="{}Tickertape" maxOccurs="unbounded"/>
031     *       &lt;/sequence>
032     *     &lt;/restriction>
033     *   &lt;/complexContent>
034     * &lt;/complexType>
035     * </pre>
036     * 
037     * 
038     */
039    @XmlAccessorType(XmlAccessType.FIELD)
040    @XmlType(name = "", propOrder = {
041        "tickertape"
042    })
043    @XmlRootElement(name = "Tickertapes")
044    public class Tickertapes {
045    
046        @XmlElement(name = "Tickertape", required = true)
047        protected List<Tickertape> tickertape;
048    
049        /**
050         * Gets the value of the tickertape property.
051         * 
052         * <p>
053         * This accessor method returns a reference to the live list,
054         * not a snapshot. Therefore any modification you make to the
055         * returned list will be present inside the JAXB object.
056         * This is why there is not a <CODE>set</CODE> method for the tickertape property.
057         * 
058         * <p>
059         * For example, to add a new item, do as follows:
060         * <pre>
061         *    getTickertape().add(newItem);
062         * </pre>
063         * 
064         * 
065         * <p>
066         * Objects of the following type(s) are allowed in the list
067         * {@link Tickertape }
068         * 
069         * 
070         */
071        public List<Tickertape> getTickertape() {
072            if (tickertape == null) {
073                tickertape = new ArrayList<Tickertape>();
074            }
075            return this.tickertape;
076        }
077    
078    }