All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nmdp.ngs.sra.jaxb.experiment.LibraryType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.06.22 at 10:48:06 AM CDT 
//


package org.nmdp.ngs.sra.jaxb.experiment;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LibraryType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="LibraryType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DESIGN_DESCRIPTION" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="SAMPLE_DESCRIPTOR" type="{}SampleDescriptorType"/>
 *         <element name="LIBRARY_DESCRIPTOR" type="{}LibraryDescriptorType"/>
 *         <element name="SPOT_DESCRIPTOR" type="{SRA.common}SpotDescriptorType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LibraryType", namespace = "", propOrder = { "designDescription", "sampleDescriptor", "libraryDescriptor", "spotDescriptor" }) public class LibraryType { @XmlElement(name = "DESIGN_DESCRIPTION", required = true) protected String designDescription; @XmlElement(name = "SAMPLE_DESCRIPTOR", required = true) protected SampleDescriptorType sampleDescriptor; @XmlElement(name = "LIBRARY_DESCRIPTOR", required = true) protected LibraryDescriptorType libraryDescriptor; @XmlElement(name = "SPOT_DESCRIPTOR") protected SpotDescriptorType spotDescriptor; /** * Gets the value of the designDescription property. * * @return * possible object is * {@link String } * */ public String getDesignDescription() { return designDescription; } /** * Sets the value of the designDescription property. * * @param value * allowed object is * {@link String } * */ public void setDesignDescription(String value) { this.designDescription = value; } /** * Gets the value of the sampleDescriptor property. * * @return * possible object is * {@link SampleDescriptorType } * */ public SampleDescriptorType getSampleDescriptor() { return sampleDescriptor; } /** * Sets the value of the sampleDescriptor property. * * @param value * allowed object is * {@link SampleDescriptorType } * */ public void setSampleDescriptor(SampleDescriptorType value) { this.sampleDescriptor = value; } /** * Gets the value of the libraryDescriptor property. * * @return * possible object is * {@link LibraryDescriptorType } * */ public LibraryDescriptorType getLibraryDescriptor() { return libraryDescriptor; } /** * Sets the value of the libraryDescriptor property. * * @param value * allowed object is * {@link LibraryDescriptorType } * */ public void setLibraryDescriptor(LibraryDescriptorType value) { this.libraryDescriptor = value; } /** * Gets the value of the spotDescriptor property. * * @return * possible object is * {@link SpotDescriptorType } * */ public SpotDescriptorType getSpotDescriptor() { return spotDescriptor; } /** * Sets the value of the spotDescriptor property. * * @param value * allowed object is * {@link SpotDescriptorType } * */ public void setSpotDescriptor(SpotDescriptorType value) { this.spotDescriptor = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy