X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FSequence.java;h=d02fd03d4f7e0a79b6f97782cda6227f2dd7a6fa;hb=b3fb6325a8bc315c5c938faf10ffd2e73d965f16;hp=8da342c029634682d76c6fc317c9484ac265520d;hpb=17625a5cfc226dc98fe65fedaa8678a6bdfdbaf1;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Sequence.java b/src/jalview/xml/binding/jalview/Sequence.java index 8da342c..d02fd03 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: 2019.06.07 at 02:14:40 PM BST +// Generated on: 2023.03.17 at 05:31:44 PM GMT // @@ -39,6 +39,7 @@ import javax.xml.bind.annotation.XmlType; * <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> @@ -163,6 +164,7 @@ public class Sequence * <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> @@ -186,6 +188,8 @@ public class Sequence protected String accessionId; @XmlAttribute(name = "locus") protected Boolean locus; + @XmlAttribute(name = "canonical") + protected Boolean canonical; /** * Gets the value of the mapping property. @@ -311,6 +315,34 @@ public class Sequence 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; + } + } }