X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FSequence.java;h=09fdcb5ae7587edaf5fb18386e1af979db1e97c8;hb=5bbd8870c4840d4092e69a1fb772f453dab9245d;hp=b842947786d0242a39ac31129b5946b48f43886d;hpb=71d8702f4f5f12c9c2f1dcb119091704dc738522;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/Sequence.java b/src/jalview/xml/binding/jalview/Sequence.java index b842947..09fdcb5 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:21:15 PM BST +// Generated on: 2023.02.22 at 10:08:57 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; + } + } }