001    
002    package org.oasis_open.docs.wsn.t_1;
003    
004    import java.util.ArrayList;
005    import java.util.List;
006    import javax.xml.bind.annotation.XmlAccessType;
007    import javax.xml.bind.annotation.XmlAccessorType;
008    import javax.xml.bind.annotation.XmlAnyElement;
009    import javax.xml.bind.annotation.XmlType;
010    import org.w3c.dom.Element;
011    
012    
013    /**
014     * <p>Java class for TopicSetType complex type.
015     * 
016     * <p>The following schema fragment specifies the expected content contained within this class.
017     * 
018     * <pre>
019     * &lt;complexType name="TopicSetType">
020     *   &lt;complexContent>
021     *     &lt;extension base="{http://docs.oasis-open.org/wsn/t-1}ExtensibleDocumented">
022     *       &lt;sequence>
023     *         &lt;any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
024     *       &lt;/sequence>
025     *       &lt;anyAttribute processContents='lax' namespace='##other'/>
026     *     &lt;/extension>
027     *   &lt;/complexContent>
028     * &lt;/complexType>
029     * </pre>
030     * 
031     * 
032     */
033    @XmlAccessorType(XmlAccessType.FIELD)
034    @XmlType(name = "TopicSetType", propOrder = {
035        "any"
036    })
037    public class TopicSetType
038        extends ExtensibleDocumented
039    {
040    
041        @XmlAnyElement(lax = true)
042        protected List<Object> any;
043    
044        /**
045         * Gets the value of the any property.
046         * 
047         * <p>
048         * This accessor method returns a reference to the live list,
049         * not a snapshot. Therefore any modification you make to the
050         * returned list will be present inside the JAXB object.
051         * This is why there is not a <CODE>set</CODE> method for the any property.
052         * 
053         * <p>
054         * For example, to add a new item, do as follows:
055         * <pre>
056         *    getAny().add(newItem);
057         * </pre>
058         * 
059         * 
060         * <p>
061         * Objects of the following type(s) are allowed in the list
062         * {@link Object }
063         * {@link Element }
064         * 
065         * 
066         */
067        public List<Object> getAny() {
068            if (any == null) {
069                any = new ArrayList<Object>();
070            }
071            return this.any;
072        }
073    
074    }