X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FMapping.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FMapping.java;h=d79bdee2e1f7312fda6998e9c6b3cd2fa0016e25;hb=9c98d4bd666346f6ad3892c5394b7da3be82d93e;hp=24f5b01bdf1e4656766ec63e7a4662ad9e79f52c;hpb=c7b2143c9cf7c5e05ad63251f7d3910751b16d20;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Mapping.java b/src/jalview/xml/binding/jalview/Mapping.java index 24f5b01..d79bdee 100644 --- a/src/jalview/xml/binding/jalview/Mapping.java +++ b/src/jalview/xml/binding/jalview/Mapping.java @@ -5,7 +5,6 @@ // Generated on: 2021.08.30 at 11:05:22 AM BST // - package jalview.xml.binding.jalview; import javax.xml.bind.annotation.XmlAccessType; @@ -15,127 +14,115 @@ 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). - * + * 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). + * * * <p>Java class for anonymous complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>The following schema fragment specifies the expected content + * contained within this class. * - * <pre> - * &lt;complexType&gt; - * &lt;complexContent&gt; - * &lt;extension base="{www.vamsas.ac.uk/jalview/version2}mapListType"&gt; - * &lt;sequence&gt; - * &lt;choice minOccurs="0"&gt; - * &lt;element ref="{www.vamsas.ac.uk/jalview/version2}Sequence"/&gt; - * &lt;element name="dseqFor"&gt; - * &lt;simpleType&gt; - * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; - * &lt;/restriction&gt; - * &lt;/simpleType&gt; - * &lt;/element&gt; - * &lt;/choice&gt; - * &lt;/sequence&gt; - * &lt;attribute name="mappingType" type="{http://www.w3.org/2001/XMLSchema}string" /&gt; - * &lt;/extension&gt; - * &lt;/complexContent&gt; - * &lt;/complexType&gt; - * </pre> + * <pre> &lt;complexType&gt; &lt;complexContent&gt; + * &lt;extension + * base="{www.vamsas.ac.uk/jalview/version2}mapListType"&gt; + * &lt;sequence&gt; &lt;choice minOccurs="0"&gt; &lt;element + * ref="{www.vamsas.ac.uk/jalview/version2}Sequence"/&gt; &lt;element + * name="dseqFor"&gt; &lt;simpleType&gt; &lt;restriction + * base="{http://www.w3.org/2001/XMLSchema}string"&gt; + * &lt;/restriction&gt; &lt;/simpleType&gt; + * &lt;/element&gt; &lt;/choice&gt; &lt;/sequence&gt; + * &lt;attribute name="mappingType" + * type="{http://www.w3.org/2001/XMLSchema}string" /&gt; + * &lt;/extension&gt; &lt;/complexContent&gt; + * &lt;/complexType&gt; </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "", propOrder = { - "sequence", - "dseqFor" -}) +@XmlType(name = "", propOrder = { "sequence", "dseqFor" }) @XmlRootElement(name = "Mapping") -public class Mapping - extends MapListType +public class Mapping extends MapListType { - @XmlElement(name = "Sequence") - protected Sequence sequence; - protected String dseqFor; - @XmlAttribute(name = "mappingType") - protected String mappingType; + @XmlElement(name = "Sequence") + protected Sequence sequence; + + protected String dseqFor; + + @XmlAttribute(name = "mappingType") + protected String mappingType; - /** - * Gets the value of the sequence property. - * - * @return - * possible object is - * {@link Sequence } - * - */ - public Sequence getSequence() { - return sequence; - } + /** + * 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; - } + /** + * 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; - } + /** + * 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; - } + /** + * Sets the value of the dseqFor property. + * + * @param value + * allowed object is {@link String } + * + */ + public void setDseqFor(String value) + { + this.dseqFor = value; + } - /** - * Gets the value of the mappingType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMappingType() { - return mappingType; - } + /** + * Gets the value of the mappingType property. + * + * @return possible object is {@link String } + * + */ + public String getMappingType() + { + return mappingType; + } - /** - * Sets the value of the mappingType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMappingType(String value) { - this.mappingType = value; - } + /** + * Sets the value of the mappingType property. + * + * @param value + * allowed object is {@link String } + * + */ + public void setMappingType(String value) + { + this.mappingType = value; + } }