X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FSequence.java;h=6a199a272065426d217a16ad7f45426e1cd04b8f;hb=0de37d1a047209510bab82225109ae2a47931f79;hp=d5e1d33d3b68732dfc38b8550b971842ff8cac30;hpb=85ed72a5a52344d202f671eb6892dc74656c29ea;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Sequence.java b/src/jalview/xml/binding/jalview/Sequence.java index d5e1d33..6a199a2 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.09.18 at 02:23:07 PM BST +// Generated on: 2023.01.31 at 04:07:08 PM GMT // @@ -38,12 +38,15 @@ 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" /> + * <attribute name="canonical" 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 +67,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 +123,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 +163,8 @@ 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" /> + * <attribute name="canonical" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> @@ -155,6 +186,10 @@ public class Sequence protected String version; @XmlAttribute(name = "accessionId") protected String accessionId; + @XmlAttribute(name = "locus") + protected Boolean locus; + @XmlAttribute(name = "canonical") + protected Boolean canonical; /** * Gets the value of the mapping property. @@ -252,6 +287,62 @@ 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; + } + + /** + * Gets the value of the canonical property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public boolean isCanonical() { + if (canonical == null) { + return false; + } else { + return canonical; + } + } + + /** + * Sets the value of the canonical property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCanonical(Boolean value) { + this.canonical = value; + } + } }