// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.12.14 at 05:13:24 AM EST // package gov.nih.ncgc.bard.capextract.jaxb; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="documentName"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="500"/> * </restriction> * </simpleType> * </element> * <element name="documentContent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element ref="{}link" minOccurs="0"/> * </sequence> * <attribute name="documentType"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Description"/> * <enumeration value="Protocol"/> * <enumeration value="Comments"/> * <enumeration value="Paper"/> * <enumeration value="External URL"/> * <enumeration value="Other"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "documentName", "documentContent", "link" }) @XmlRootElement(name = "assayDocument") public class AssayDocument { @XmlElement(required = true) protected String documentName; protected String documentContent; protected Link link; @XmlAttribute(name = "documentType") protected String documentType; /** * Gets the value of the documentName property. * * @return * possible object is * {@link String } * */ public String getDocumentName() { return documentName; } /** * Sets the value of the documentName property. * * @param value * allowed object is * {@link String } * */ public void setDocumentName(String value) { this.documentName = value; } /** * Gets the value of the documentContent property. * * @return * possible object is * {@link String } * */ public String getDocumentContent() { return documentContent; } /** * Sets the value of the documentContent property. * * @param value * allowed object is * {@link String } * */ public void setDocumentContent(String value) { this.documentContent = value; } /** * Gets the value of the link property. * * @return * possible object is * {@link Link } * */ public Link getLink() { return link; } /** * Sets the value of the link property. * * @param value * allowed object is * {@link Link } * */ public void setLink(Link value) { this.link = value; } /** * Gets the value of the documentType property. * * @return * possible object is * {@link String } * */ public String getDocumentType() { return documentType; } /** * Sets the value of the documentType property. * * @param value * allowed object is * {@link String } * */ public void setDocumentType(String value) { this.documentType = value; } }