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 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     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;sequence>
028     *         &lt;element ref="{}Globals" minOccurs="0"/>
029     *         &lt;element ref="{}HackystatServices"/>
030     *         &lt;element ref="{}HackystatUsers"/>
031     *         &lt;element ref="{}HackystatProjects"/>
032     *         &lt;element ref="{}Nabaztags" minOccurs="0"/>
033     *         &lt;element ref="{}TwitterAccounts" minOccurs="0"/>
034     *         &lt;element ref="{}FacebookAccounts" minOccurs="0"/>
035     *         &lt;element ref="{}Tickertapes"/>
036     *       &lt;/sequence>
037     *     &lt;/restriction>
038     *   &lt;/complexContent>
039     * &lt;/complexType>
040     * </pre>
041     * 
042     * 
043     */
044    @XmlAccessorType(XmlAccessType.FIELD)
045    @XmlType(name = "", propOrder = {
046        "globals",
047        "hackystatServices",
048        "hackystatUsers",
049        "hackystatProjects",
050        "nabaztags",
051        "twitterAccounts",
052        "facebookAccounts",
053        "tickertapes"
054    })
055    @XmlRootElement(name = "TickerLingua")
056    public class TickerLingua {
057    
058        @XmlElement(name = "Globals")
059        protected Globals globals;
060        @XmlElement(name = "HackystatServices", required = true)
061        protected HackystatServices hackystatServices;
062        @XmlElement(name = "HackystatUsers", required = true)
063        protected HackystatUsers hackystatUsers;
064        @XmlElement(name = "HackystatProjects", required = true)
065        protected HackystatProjects hackystatProjects;
066        @XmlElement(name = "Nabaztags")
067        protected Nabaztags nabaztags;
068        @XmlElement(name = "TwitterAccounts")
069        protected TwitterAccounts twitterAccounts;
070        @XmlElement(name = "FacebookAccounts")
071        protected FacebookAccounts facebookAccounts;
072        @XmlElement(name = "Tickertapes", required = true)
073        protected Tickertapes tickertapes;
074    
075        /**
076         * Gets the value of the globals property.
077         * 
078         * @return
079         *     possible object is
080         *     {@link Globals }
081         *     
082         */
083        public Globals getGlobals() {
084            return globals;
085        }
086    
087        /**
088         * Sets the value of the globals property.
089         * 
090         * @param value
091         *     allowed object is
092         *     {@link Globals }
093         *     
094         */
095        public void setGlobals(Globals value) {
096            this.globals = value;
097        }
098    
099        /**
100         * Gets the value of the hackystatServices property.
101         * 
102         * @return
103         *     possible object is
104         *     {@link HackystatServices }
105         *     
106         */
107        public HackystatServices getHackystatServices() {
108            return hackystatServices;
109        }
110    
111        /**
112         * Sets the value of the hackystatServices property.
113         * 
114         * @param value
115         *     allowed object is
116         *     {@link HackystatServices }
117         *     
118         */
119        public void setHackystatServices(HackystatServices value) {
120            this.hackystatServices = value;
121        }
122    
123        /**
124         * Gets the value of the hackystatUsers property.
125         * 
126         * @return
127         *     possible object is
128         *     {@link HackystatUsers }
129         *     
130         */
131        public HackystatUsers getHackystatUsers() {
132            return hackystatUsers;
133        }
134    
135        /**
136         * Sets the value of the hackystatUsers property.
137         * 
138         * @param value
139         *     allowed object is
140         *     {@link HackystatUsers }
141         *     
142         */
143        public void setHackystatUsers(HackystatUsers value) {
144            this.hackystatUsers = value;
145        }
146    
147        /**
148         * Gets the value of the hackystatProjects property.
149         * 
150         * @return
151         *     possible object is
152         *     {@link HackystatProjects }
153         *     
154         */
155        public HackystatProjects getHackystatProjects() {
156            return hackystatProjects;
157        }
158    
159        /**
160         * Sets the value of the hackystatProjects property.
161         * 
162         * @param value
163         *     allowed object is
164         *     {@link HackystatProjects }
165         *     
166         */
167        public void setHackystatProjects(HackystatProjects value) {
168            this.hackystatProjects = value;
169        }
170    
171        /**
172         * Gets the value of the nabaztags property.
173         * 
174         * @return
175         *     possible object is
176         *     {@link Nabaztags }
177         *     
178         */
179        public Nabaztags getNabaztags() {
180            return nabaztags;
181        }
182    
183        /**
184         * Sets the value of the nabaztags property.
185         * 
186         * @param value
187         *     allowed object is
188         *     {@link Nabaztags }
189         *     
190         */
191        public void setNabaztags(Nabaztags value) {
192            this.nabaztags = value;
193        }
194    
195        /**
196         * Gets the value of the twitterAccounts property.
197         * 
198         * @return
199         *     possible object is
200         *     {@link TwitterAccounts }
201         *     
202         */
203        public TwitterAccounts getTwitterAccounts() {
204            return twitterAccounts;
205        }
206    
207        /**
208         * Sets the value of the twitterAccounts property.
209         * 
210         * @param value
211         *     allowed object is
212         *     {@link TwitterAccounts }
213         *     
214         */
215        public void setTwitterAccounts(TwitterAccounts value) {
216            this.twitterAccounts = value;
217        }
218    
219        /**
220         * Gets the value of the facebookAccounts property.
221         * 
222         * @return
223         *     possible object is
224         *     {@link FacebookAccounts }
225         *     
226         */
227        public FacebookAccounts getFacebookAccounts() {
228            return facebookAccounts;
229        }
230    
231        /**
232         * Sets the value of the facebookAccounts property.
233         * 
234         * @param value
235         *     allowed object is
236         *     {@link FacebookAccounts }
237         *     
238         */
239        public void setFacebookAccounts(FacebookAccounts value) {
240            this.facebookAccounts = value;
241        }
242    
243        /**
244         * Gets the value of the tickertapes property.
245         * 
246         * @return
247         *     possible object is
248         *     {@link Tickertapes }
249         *     
250         */
251        public Tickertapes getTickertapes() {
252            return tickertapes;
253        }
254    
255        /**
256         * Sets the value of the tickertapes property.
257         * 
258         * @param value
259         *     allowed object is
260         *     {@link Tickertapes }
261         *     
262         */
263        public void setTickertapes(Tickertapes value) {
264            this.tickertapes = value;
265        }
266    
267    }