From 8135460a52c0551e4a40777d077843fd4e19c049 Mon Sep 17 00:00:00 2001 From: James Procter Date: Thu, 23 Feb 2023 12:08:00 +0000 Subject: [PATCH] JAL-3858 new MatrixType JAX-RI POJO --- src/jalview/xml/binding/jalview/MatrixType.java | 176 +++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 src/jalview/xml/binding/jalview/MatrixType.java diff --git a/src/jalview/xml/binding/jalview/MatrixType.java b/src/jalview/xml/binding/jalview/MatrixType.java new file mode 100644 index 0000000..f201c32 --- /dev/null +++ b/src/jalview/xml/binding/jalview/MatrixType.java @@ -0,0 +1,176 @@ +// +// 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: 2023.02.22 at 10:08:57 PM GMT +// + + +package jalview.xml.binding.jalview; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; +import javax.xml.bind.annotation.XmlValue; + + +/** + *

Java class for MatrixType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MatrixType">
+ *   <simpleContent>
+ *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
+ *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
+ *       <attribute name="rows" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ *       <attribute name="cols" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ *     </extension>
+ *   </simpleContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MatrixType", propOrder = { + "value" +}) +public class MatrixType { + + @XmlValue + protected String value; + @XmlAttribute(name = "id") + protected String id; + @XmlAttribute(name = "type", required = true) + protected String type; + @XmlAttribute(name = "rows", required = true) + protected BigInteger rows; + @XmlAttribute(name = "cols", required = true) + protected BigInteger cols; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = 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; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the rows property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getRows() { + return rows; + } + + /** + * Sets the value of the rows property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setRows(BigInteger value) { + this.rows = value; + } + + /** + * Gets the value of the cols property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getCols() { + return cols; + } + + /** + * Sets the value of the cols property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setCols(BigInteger value) { + this.cols = value; + } + +} -- 1.7.10.2