2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2018.12.20 at 11:47:26 AM GMT
9 package jalview.xml.binding.jalview;
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAttribute;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlType;
21 * <p>Java class for DoubleMatrix complex type.
23 * <p>The following schema fragment specifies the expected content contained within this class.
26 * <complexType name="DoubleMatrix">
28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <element name="row" type="{www.jalview.org}DoubleVector" maxOccurs="unbounded" minOccurs="0"/>
31 * <element name="D" type="{www.jalview.org}DoubleVector" minOccurs="0"/>
32 * <element name="E" type="{www.jalview.org}DoubleVector" minOccurs="0"/>
34 * <attribute name="rows" type="{http://www.w3.org/2001/XMLSchema}int" />
35 * <attribute name="columns" type="{http://www.w3.org/2001/XMLSchema}int" />
37 * </complexContent>
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "DoubleMatrix", namespace = "www.jalview.org", propOrder = {
49 public class DoubleMatrix {
51 protected List<DoubleVector> row;
52 @XmlElement(name = "D")
53 protected DoubleVector d;
54 @XmlElement(name = "E")
55 protected DoubleVector e;
56 @XmlAttribute(name = "rows")
57 protected Integer rows;
58 @XmlAttribute(name = "columns")
59 protected Integer columns;
62 * Gets the value of the row property.
65 * This accessor method returns a reference to the live list,
66 * not a snapshot. Therefore any modification you make to the
67 * returned list will be present inside the JAXB object.
68 * This is why there is not a <CODE>set</CODE> method for the row property.
71 * For example, to add a new item, do as follows:
73 * getRow().add(newItem);
78 * Objects of the following type(s) are allowed in the list
79 * {@link DoubleVector }
83 public List<DoubleVector> getRow() {
85 row = new ArrayList<DoubleVector>();
91 * Gets the value of the d property.
95 * {@link DoubleVector }
98 public DoubleVector getD() {
103 * Sets the value of the d property.
107 * {@link DoubleVector }
110 public void setD(DoubleVector value) {
115 * Gets the value of the e property.
119 * {@link DoubleVector }
122 public DoubleVector getE() {
127 * Sets the value of the e property.
131 * {@link DoubleVector }
134 public void setE(DoubleVector value) {
139 * Gets the value of the rows property.
146 public Integer getRows() {
151 * Sets the value of the rows property.
158 public void setRows(Integer value) {
163 * Gets the value of the columns property.
170 public Integer getColumns() {
175 * Sets the value of the columns property.
182 public void setColumns(Integer value) {
183 this.columns = value;