X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FMapping.java;h=5ebeb7e99a938b2492fbf96591c14e1c474379eb;hb=e417a2cc319e7d17d1ccb92f9d3f8e708a1b1652;hp=da64ed2ed90a2ed62307b576cf44d8cffb3cb857;hpb=85ed72a5a52344d202f671eb6892dc74656c29ea;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Mapping.java b/src/jalview/xml/binding/jalview/Mapping.java index da64ed2..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.09.18 at 02:23:07 PM BST +// 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; + } + }