X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Funiprot%2FCommentType.java;h=72ca25cad2be53f3ea509fa71da668ba0d928493;hb=ee19482a42988b76fdca9d46065ce2ca14ea73c5;hp=b0bbf77b7b7bcebb917e68e41f0ed62e3573572a;hpb=4d64932654de3f6ffe07db11d18f2d21f558c6e6;p=jalview.git diff --git a/src/jalview/xml/binding/uniprot/CommentType.java b/src/jalview/xml/binding/uniprot/CommentType.java index b0bbf77..72ca25c 100644 --- a/src/jalview/xml/binding/uniprot/CommentType.java +++ b/src/jalview/xml/binding/uniprot/CommentType.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.13 at 10:18:53 AM BST +// Generated on: 2023.02.22 at 10:08:58 PM GMT // @@ -35,6 +35,10 @@ import javax.xml.bind.annotation.XmlType; * <choice minOccurs="0"> * <group ref="{http://uniprot.org/uniprot}bpcCommentGroup"/> * <sequence> + * <element name="reaction" type="{http://uniprot.org/uniprot}reactionType"/> + * <element name="physiologicalReaction" type="{http://uniprot.org/uniprot}physiologicalReactionType" maxOccurs="2" minOccurs="0"/> + * </sequence> + * <sequence> * <element name="cofactor" type="{http://uniprot.org/uniprot}cofactorType" maxOccurs="unbounded"/> * </sequence> * <sequence> @@ -176,6 +180,8 @@ import javax.xml.bind.annotation.XmlType; "phDependence", "redoxPotential", "temperatureDependence", + "reaction", + "physiologicalReaction", "cofactor", "subcellularLocation", "conflict", @@ -197,6 +203,8 @@ public class CommentType { protected CommentType.PhDependence phDependence; protected CommentType.RedoxPotential redoxPotential; protected CommentType.TemperatureDependence temperatureDependence; + protected ReactionType reaction; + protected List physiologicalReaction; protected List cofactor; protected List subcellularLocation; protected CommentType.Conflict conflict; @@ -370,6 +378,59 @@ public class CommentType { } /** + * Gets the value of the reaction property. + * + * @return + * possible object is + * {@link ReactionType } + * + */ + public ReactionType getReaction() { + return reaction; + } + + /** + * Sets the value of the reaction property. + * + * @param value + * allowed object is + * {@link ReactionType } + * + */ + public void setReaction(ReactionType value) { + this.reaction = value; + } + + /** + * Gets the value of the physiologicalReaction property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the physiologicalReaction property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPhysiologicalReaction().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PhysiologicalReactionType } + * + * + */ + public List getPhysiologicalReaction() { + if (physiologicalReaction == null) { + physiologicalReaction = new ArrayList(); + } + return this.physiologicalReaction; + } + + /** * Gets the value of the cofactor property. * *