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=5ebeb7e99a938b2492fbf96591c14e1c474379eb;hb=6a05eb3f55d97e685f0c723822384633d5636778;hp=3cbebc0bb3bf34462b8c3795137cdd3e3432fddb;hpb=d113749a183a3ea8f3f7e22c725511f59f1d833f;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Mapping.java b/src/jalview/xml/binding/jalview/Mapping.java index 3cbebc0..5ebeb7e 100644 --- a/src/jalview/xml/binding/jalview/Mapping.java +++ b/src/jalview/xml/binding/jalview/Mapping.java @@ -2,7 +2,7 @@ // 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.12.20 at 11:47:26 AM GMT +// Generated on: 2019.06.07 at 02:21:15 PM BST // @@ -10,6 +10,7 @@ package jalview.xml.binding.jalview; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @@ -41,6 +42,7 @@ import javax.xml.bind.annotation.XmlType; * </element> * </choice> * </sequence> + * <attribute name="mappingType" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> @@ -61,6 +63,8 @@ public class Mapping @XmlElement(name = "Sequence") protected Sequence sequence; protected String dseqFor; + @XmlAttribute(name = "mappingType") + protected String mappingType; /** * Gets the value of the sequence property. @@ -110,4 +114,28 @@ public class Mapping this.dseqFor = value; } + /** + * 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; + } + }