2 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3
3 // See https://eclipse-ee4j.github.io/jaxb-ri
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2021.08.30 at 11:05:22 AM BST
8 package jalview.xml.binding.jalview;
10 import javax.xml.bind.annotation.XmlAccessType;
11 import javax.xml.bind.annotation.XmlAccessorType;
12 import javax.xml.bind.annotation.XmlAttribute;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
19 * Represent the jalview.datamodel.Mapping object - it also provides a way of
20 * storing sequences that are mapped 'to' without adding them to the sequence
21 * set (which will mean they are then added to the alignment too).
24 * <p>Java class for anonymous complex type.
26 * <p>The following schema fragment specifies the expected content
27 * contained within this class.
29 * <pre> &lt;complexType&gt; &lt;complexContent&gt;
31 * base="{www.vamsas.ac.uk/jalview/version2}mapListType"&gt;
32 * &lt;sequence&gt; &lt;choice minOccurs="0"&gt; &lt;element
33 * ref="{www.vamsas.ac.uk/jalview/version2}Sequence"/&gt; &lt;element
34 * name="dseqFor"&gt; &lt;simpleType&gt; &lt;restriction
35 * base="{http://www.w3.org/2001/XMLSchema}string"&gt;
36 * &lt;/restriction&gt; &lt;/simpleType&gt;
37 * &lt;/element&gt; &lt;/choice&gt; &lt;/sequence&gt;
38 * &lt;attribute name="mappingType"
39 * type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
40 * &lt;/extension&gt; &lt;/complexContent&gt;
41 * &lt;/complexType&gt; </pre>
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "", propOrder = { "sequence", "dseqFor" })
47 @XmlRootElement(name = "Mapping")
48 public class Mapping extends MapListType
51 @XmlElement(name = "Sequence")
52 protected Sequence sequence;
54 protected String dseqFor;
56 @XmlAttribute(name = "mappingType")
57 protected String mappingType;
60 * Gets the value of the sequence property.
62 * @return possible object is {@link Sequence }
65 public Sequence getSequence()
71 * Sets the value of the sequence property.
74 * allowed object is {@link Sequence }
77 public void setSequence(Sequence value)
79 this.sequence = value;
83 * Gets the value of the dseqFor property.
85 * @return possible object is {@link String }
88 public String getDseqFor()
94 * Sets the value of the dseqFor property.
97 * allowed object is {@link String }
100 public void setDseqFor(String value)
102 this.dseqFor = value;
106 * Gets the value of the mappingType property.
108 * @return possible object is {@link String }
111 public String getMappingType()
117 * Sets the value of the mappingType property.
120 * allowed object is {@link String }
123 public void setMappingType(String value)
125 this.mappingType = value;