1 2 package org.oasis_open.docs.wsn.t_1; 3 4 import java.util.ArrayList; 5 import java.util.List; 6 import javax.xml.bind.annotation.XmlAccessType; 7 import javax.xml.bind.annotation.XmlAccessorType; 8 import javax.xml.bind.annotation.XmlAnyElement; 9 import javax.xml.bind.annotation.XmlMixed; 10 import javax.xml.bind.annotation.XmlType; 11 import org.w3c.dom.Element; 12 13 14 /** 15 * <p>Java class for Documentation complex type. 16 * 17 * <p>The following schema fragment specifies the expected content contained within this class. 18 * 19 * <pre> 20 * <complexType name="Documentation"> 21 * <complexContent> 22 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 23 * <sequence> 24 * <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/> 25 * </sequence> 26 * </restriction> 27 * </complexContent> 28 * </complexType> 29 * </pre> 30 * 31 * 32 */ 33 @XmlAccessorType(XmlAccessType.FIELD) 34 @XmlType(name = "Documentation", propOrder = { 35 "content" 36 }) 37 public class Documentation { 38 39 @XmlMixed 40 @XmlAnyElement(lax = true) 41 protected List<Object> content; 42 43 /** 44 * Gets the value of the content property. 45 * 46 * <p> 47 * This accessor method returns a reference to the live list, 48 * not a snapshot. Therefore any modification you make to the 49 * returned list will be present inside the JAXB object. 50 * This is why there is not a <CODE>set</CODE> method for the content property. 51 * 52 * <p> 53 * For example, to add a new item, do as follows: 54 * <pre> 55 * getContent().add(newItem); 56 * </pre> 57 * 58 * 59 * <p> 60 * Objects of the following type(s) are allowed in the list 61 * {@link String } 62 * {@link Element } 63 * {@link Object } 64 * 65 * 66 */ 67 public List<Object> getContent() { 68 if (content == null) { 69 content = new ArrayList<Object>(); 70 } 71 return this.content; 72 } 73 74 }