2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2018.12.20 at 11:47:26 AM GMT
9 package jalview.xml.binding.jalview;
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
20 * Represent the jalview.datamodel.Mapping object - it also provides
21 * a way of storing sequences that are mapped 'to' without adding them
22 * to the sequence set (which will mean they are then added to the alignment too).
25 * <p>Java class for anonymous complex type.
27 * <p>The following schema fragment specifies the expected content contained within this class.
32 * <extension base="{www.vamsas.ac.uk/jalview/version2}mapListType">
34 * <choice minOccurs="0">
35 * <element ref="{www.vamsas.ac.uk/jalview/version2}Sequence"/>
36 * <element name="dseqFor">
38 * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
45 * </complexContent>
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "", propOrder = {
56 @XmlRootElement(name = "Mapping")
61 @XmlElement(name = "Sequence")
62 protected Sequence sequence;
63 protected String dseqFor;
66 * Gets the value of the sequence property.
73 public Sequence getSequence() {
78 * Sets the value of the sequence property.
85 public void setSequence(Sequence value) {
86 this.sequence = value;
90 * Gets the value of the dseqFor property.
97 public String getDseqFor() {
102 * Sets the value of the dseqFor property.
109 public void setDseqFor(String value) {
110 this.dseqFor = value;