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 * <complexType name="TopicSetType">
020 * <complexContent>
021 * <extension base="{http://docs.oasis-open.org/wsn/t-1}ExtensibleDocumented">
022 * <sequence>
023 * <any/>
024 * </sequence>
025 * </extension>
026 * </complexContent>
027 * </complexType>
028 * </pre>
029 *
030 *
031 */
032 @XmlAccessorType(XmlAccessType.FIELD)
033 @XmlType(name = "TopicSetType", propOrder = {
034 "any"
035 })
036 public class TopicSetType
037 extends ExtensibleDocumented
038 {
039
040 @XmlAnyElement(lax = true)
041 protected List<Object> any;
042
043 /**
044 * Gets the value of the any property.
045 *
046 * <p>
047 * This accessor method returns a reference to the live list,
048 * not a snapshot. Therefore any modification you make to the
049 * returned list will be present inside the JAXB object.
050 * This is why there is not a <CODE>set</CODE> method for the any property.
051 *
052 * <p>
053 * For example, to add a new item, do as follows:
054 * <pre>
055 * getAny().add(newItem);
056 * </pre>
057 *
058 *
059 * <p>
060 * Objects of the following type(s) are allowed in the list
061 * {@link Object }
062 * {@link Element }
063 *
064 *
065 */
066 public List<Object> getAny() {
067 if (any == null) {
068 any = new ArrayList<Object>();
069 }
070 return this.any;
071 }
072
073 }