// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2018.09.28 at 12:18:54 PM BST // package jalview.xml.binding.jalview; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * * Represent the jalview.datamodel.Mapping object - it also provides * a way of storing sequences that are mapped 'to' without adding them * to the sequence set (which will mean they are then added to the alignment too). * * *

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{www.vamsas.ac.uk/jalview/version2}mapListType">
 *       <sequence>
 *         <choice minOccurs="0">
 *           <element ref="{www.vamsas.ac.uk/jalview/version2}Sequence"/>
 *           <element name="dseqFor">
 *             <simpleType>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               </restriction>
 *             </simpleType>
 *           </element>
 *         </choice>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sequence", "dseqFor" }) @XmlRootElement(name = "Mapping") public class Mapping extends MapListType { @XmlElement(name = "Sequence") protected Sequence sequence; protected String dseqFor; /** * Gets the value of the sequence property. * * @return * possible object is * {@link Sequence } * */ public Sequence getSequence() { return sequence; } /** * Sets the value of the sequence property. * * @param value * allowed object is * {@link Sequence } * */ public void setSequence(Sequence value) { this.sequence = value; } /** * Gets the value of the dseqFor property. * * @return * possible object is * {@link String } * */ public String getDseqFor() { return dseqFor; } /** * Sets the value of the dseqFor property. * * @param value * allowed object is * {@link String } * */ public void setDseqFor(String value) { this.dseqFor = value; } }