// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2013.10.25 at 12:13:33 AM EDT // package gov.nih.ncgc.bard.capextract.jaxb; import java.math.BigInteger; 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="experimentRef"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}link"/> * </sequence> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * <element name="stageRef" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}link"/> * </sequence> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * <element ref="{}contexts" minOccurs="0"/> * </sequence> * <attribute name="projectExperimentId" use="required" type="{}bardID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "experimentRef", "stageRef", "contexts" }) @XmlRootElement(name = "projectExperiment") public class ProjectExperiment { @XmlElement(required = true) protected ProjectExperiment.ExperimentRef experimentRef; protected ProjectExperiment.StageRef stageRef; protected Contexts contexts; @XmlAttribute(required = true) protected BigInteger projectExperimentId; /** * Gets the value of the experimentRef property. * * @return * possible object is * {@link ProjectExperiment.ExperimentRef } * */ public ProjectExperiment.ExperimentRef getExperimentRef() { return experimentRef; } /** * Sets the value of the experimentRef property. * * @param value * allowed object is * {@link ProjectExperiment.ExperimentRef } * */ public void setExperimentRef(ProjectExperiment.ExperimentRef value) { this.experimentRef = value; } /** * Gets the value of the stageRef property. * * @return * possible object is * {@link ProjectExperiment.StageRef } * */ public ProjectExperiment.StageRef getStageRef() { return stageRef; } /** * Sets the value of the stageRef property. * * @param value * allowed object is * {@link ProjectExperiment.StageRef } * */ public void setStageRef(ProjectExperiment.StageRef value) { this.stageRef = value; } /** * Gets the value of the contexts property. * * @return * possible object is * {@link Contexts } * */ public Contexts getContexts() { return contexts; } /** * Sets the value of the contexts property. * * @param value * allowed object is * {@link Contexts } * */ public void setContexts(Contexts value) { this.contexts = value; } /** * Gets the value of the projectExperimentId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getProjectExperimentId() { return projectExperimentId; } /** * Sets the value of the projectExperimentId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setProjectExperimentId(BigInteger value) { this.projectExperimentId = value; } /** * <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 ref="{}link"/> * </sequence> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "link" }) public static class ExperimentRef { @XmlElement(required = true) protected Link link; @XmlAttribute protected String label; /** * 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 label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } } /** * <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 ref="{}link"/> * </sequence> * <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "link" }) public static class StageRef { @XmlElement(required = true) protected Link link; @XmlAttribute protected String label; /** * 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 label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } } }