X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FMapOnAMatrixType.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FMapOnAMatrixType.java;h=de9132a75fad3a5dbdc240b560f4cfff42fb6c26;hb=eb3e681d6e82ccdd5d312d1981dfb306e7f479f0;hp=d48a31520c9ffac60a1304380092dbfff9132794;hpb=cb31e23d9138e481479623374aed7767bf8934d2;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/MapOnAMatrixType.java b/src/jalview/xml/binding/jalview/MapOnAMatrixType.java index d48a315..de9132a 100644 --- a/src/jalview/xml/binding/jalview/MapOnAMatrixType.java +++ b/src/jalview/xml/binding/jalview/MapOnAMatrixType.java @@ -5,7 +5,6 @@ // Generated on: 2023.11.01 at 07:03:09 PM GMT // - package jalview.xml.binding.jalview; import java.util.ArrayList; @@ -15,146 +14,139 @@ import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; - /** - * Defines a mapping from the local frame to a matrix - * and its associated data specified by MatrixType - * + * Defines a mapping from the local frame to a matrix and its associated data + * specified by MatrixType + * * * <p>Java class for MapOnAMatrixType complex type. * - * <p>The following schema fragment specifies the expected content contained within this class. + * <p>The following schema fragment specifies the expected content + * contained within this class. * - * <pre> - * &lt;complexType name="MapOnAMatrixType"&gt; - * &lt;complexContent&gt; - * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; - * &lt;sequence&gt; - * &lt;element name="property" type="{www.vamsas.ac.uk/jalview/version2}property" maxOccurs="unbounded" minOccurs="0"/&gt; - * &lt;element name="mapping" type="{www.vamsas.ac.uk/jalview/version2}mapListType" minOccurs="0"/&gt; - * &lt;/sequence&gt; - * &lt;attribute name="matrix" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt; - * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /&gt; - * &lt;/restriction&gt; - * &lt;/complexContent&gt; - * &lt;/complexType&gt; - * </pre> + * <pre> &lt;complexType name="MapOnAMatrixType"&gt; + * &lt;complexContent&gt; &lt;restriction + * base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; + * &lt;sequence&gt; &lt;element name="property" + * type="{www.vamsas.ac.uk/jalview/version2}property" maxOccurs="unbounded" + * minOccurs="0"/&gt; &lt;element name="mapping" + * type="{www.vamsas.ac.uk/jalview/version2}mapListType" minOccurs="0"/&gt; + * &lt;/sequence&gt; &lt;attribute name="matrix" use="required" + * type="{http://www.w3.org/2001/XMLSchema}string" /&gt; &lt;attribute + * name="id" type="{http://www.w3.org/2001/XMLSchema}string" /&gt; + * &lt;/restriction&gt; &lt;/complexContent&gt; + * &lt;/complexType&gt; </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MapOnAMatrixType", propOrder = { - "property", - "mapping" -}) -public class MapOnAMatrixType { +@XmlType(name = "MapOnAMatrixType", propOrder = { "property", "mapping" }) +public class MapOnAMatrixType +{ - protected List property; - protected MapListType mapping; - @XmlAttribute(name = "matrix", required = true) - protected String matrix; - @XmlAttribute(name = "id") - protected String id; + protected List property; - /** - * Gets the value of the property property. - * - * <p> - * 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 <CODE>set</CODE> method for the property property. - * - * <p> - * For example, to add a new item, do as follows: - * <pre> - * getProperty().add(newItem); - * </pre> - * - * - * <p> - * Objects of the following type(s) are allowed in the list - * {@link Property } - * - * - */ - public List getProperty() { - if (property == null) { - property = new ArrayList(); - } - return this.property; - } + protected MapListType mapping; - /** - * Gets the value of the mapping property. - * - * @return - * possible object is - * {@link MapListType } - * - */ - public MapListType getMapping() { - return mapping; - } + @XmlAttribute(name = "matrix", required = true) + protected String matrix; - /** - * Sets the value of the mapping property. - * - * @param value - * allowed object is - * {@link MapListType } - * - */ - public void setMapping(MapListType value) { - this.mapping = value; - } + @XmlAttribute(name = "id") + protected String id; - /** - * Gets the value of the matrix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMatrix() { - return matrix; + /** + * Gets the value of the property property. + * + * <p> 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 + * <CODE>set</CODE> method for the property property. + * + * <p> For example, to add a new item, do as follows: <pre> + * getProperty().add(newItem); </pre> + * + * + * <p> Objects of the following type(s) are allowed in the list + * {@link Property } + * + * + */ + public List getProperty() + { + if (property == null) + { + property = new ArrayList(); } + return this.property; + } - /** - * Sets the value of the matrix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMatrix(String value) { - this.matrix = value; - } + /** + * Gets the value of the mapping property. + * + * @return possible object is {@link MapListType } + * + */ + public MapListType getMapping() + { + return mapping; + } - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } + /** + * Sets the value of the mapping property. + * + * @param value + * allowed object is {@link MapListType } + * + */ + public void setMapping(MapListType value) + { + this.mapping = value; + } - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } + /** + * Gets the value of the matrix property. + * + * @return possible object is {@link String } + * + */ + public String getMatrix() + { + return matrix; + } + + /** + * Sets the value of the matrix property. + * + * @param value + * allowed object is {@link String } + * + */ + public void setMatrix(String value) + { + this.matrix = value; + } + + /** + * Gets the value of the id property. + * + * @return possible object is {@link String } + * + */ + public String getId() + { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is {@link String } + * + */ + public void setId(String value) + { + this.id = value; + } }