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.XmlMixed;
010    import javax.xml.bind.annotation.XmlType;
011    import org.w3c.dom.Element;
012    
013    
014    /**
015     * <p>Java class for Documentation complex type.
016     * 
017     * <p>The following schema fragment specifies the expected content contained within this class.
018     * 
019     * <pre>
020     * &lt;complexType name="Documentation">
021     *   &lt;complexContent>
022     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
023     *       &lt;sequence>
024     *         &lt;any/>
025     *       &lt;/sequence>
026     *     &lt;/restriction>
027     *   &lt;/complexContent>
028     * &lt;/complexType>
029     * </pre>
030     * 
031     * 
032     */
033    @XmlAccessorType(XmlAccessType.FIELD)
034    @XmlType(name = "Documentation", propOrder = {
035        "content"
036    })
037    public class Documentation {
038    
039        @XmlMixed
040        @XmlAnyElement(lax = true)
041        protected List<Object> content;
042    
043        /**
044         * Gets the value of the content 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 content property.
051         * 
052         * <p>
053         * For example, to add a new item, do as follows:
054         * <pre>
055         *    getContent().add(newItem);
056         * </pre>
057         * 
058         * 
059         * <p>
060         * Objects of the following type(s) are allowed in the list
061         * {@link Element }
062         * {@link Object }
063         * {@link String }
064         * 
065         * 
066         */
067        public List<Object> getContent() {
068            if (content == null) {
069                content = new ArrayList<Object>();
070            }
071            return this.content;
072        }
073    
074    }