X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FSequence.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FSequence.java;h=b842947786d0242a39ac31129b5946b48f43886d;hb=c6ff2e8a0e898035b248933704824484df4c4018;hp=abb40c9ec8c2ede7955bfcfc7f04b65e90115dd2;hpb=8910c0162b81b32ea0760daf7509a9a5f8ec1fea;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Sequence.java b/src/jalview/xml/binding/jalview/Sequence.java index abb40c9..b842947 100644 --- a/src/jalview/xml/binding/jalview/Sequence.java +++ b/src/jalview/xml/binding/jalview/Sequence.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 // @@ -38,12 +38,14 @@ import javax.xml.bind.annotation.XmlType; * <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="accessionId" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="locus" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <attribute name="dsseqid" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="biotype" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> @@ -64,6 +66,8 @@ public class Sequence protected List dbRef; @XmlAttribute(name = "dsseqid") protected String dsseqid; + @XmlAttribute(name = "biotype") + protected String biotype; /** * Gets the value of the dbRef property. @@ -118,6 +122,30 @@ public class Sequence this.dsseqid = value; } + /** + * Gets the value of the biotype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBiotype() { + return biotype; + } + + /** + * Sets the value of the biotype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBiotype(String value) { + this.biotype = value; + } + /** *

Java class for anonymous complex type. @@ -134,6 +162,7 @@ public class Sequence * <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="accessionId" type="{http://www.w3.org/2001/XMLSchema}string" /> + * <attribute name="locus" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> @@ -155,6 +184,8 @@ public class Sequence protected String version; @XmlAttribute(name = "accessionId") protected String accessionId; + @XmlAttribute(name = "locus") + protected Boolean locus; /** * Gets the value of the mapping property. @@ -252,6 +283,34 @@ public class Sequence this.accessionId = value; } + /** + * Gets the value of the locus property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isLocus() { + if (locus == null) { + return false; + } else { + return locus; + } + } + + /** + * Sets the value of the locus property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setLocus(Boolean value) { + this.locus = value; + } + } }