X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FMapping.java;h=39ba1d810cdc98c36df19746f5076b71054eeb38;hb=refs%2Fheads%2Fbug%2FJAL-3705saveProteinId;hp=cd82a2ae2aa02011c904a1675a40b5f5469dd5d0;hpb=4d64932654de3f6ffe07db11d18f2d21f558c6e6;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Mapping.java b/src/jalview/xml/binding/jalview/Mapping.java index cd82a2a..39ba1d8 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.28 at 12:18:54 PM BST +// Generated on: 2020.08.11 at 02:44:23 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="mappedFromId" 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 = "mappedFromId") + protected String mappedFromId; /** * Gets the value of the sequence property. @@ -110,4 +114,28 @@ public class Mapping this.dseqFor = value; } + /** + * Gets the value of the mappedFromId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMappedFromId() { + return mappedFromId; + } + + /** + * Sets the value of the mappedFromId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMappedFromId(String value) { + this.mappedFromId = value; + } + }