Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package jalview.xml.binding.jalview

File DoubleMatrix.java

 

Coverage histogram

../../../../img/srcFileCovDistChart9.png
12% of files have more coverage

Code metrics

2
11
9
1
186
55
10
0.91
1.22
9
1.11

Classes

Class Line # Actions
DoubleMatrix 49 11 10
0.9090909490.9%
 

Contributing tests

This file is covered by 1 test. .

Source view

1    //
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: 2019.06.07 at 02:21:15 PM BST
6    //
7   
8   
9    package jalview.xml.binding.jalview;
10   
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;
18   
19   
20    /**
21    * <p>Java class for DoubleMatrix complex type.
22    *
23    * <p>The following schema fragment specifies the expected content contained within this class.
24    *
25    * <pre>
26    * &lt;complexType name="DoubleMatrix">
27    * &lt;complexContent>
28    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29    * &lt;sequence>
30    * &lt;element name="row" type="{www.jalview.org}DoubleVector" maxOccurs="unbounded" minOccurs="0"/>
31    * &lt;element name="D" type="{www.jalview.org}DoubleVector" minOccurs="0"/>
32    * &lt;element name="E" type="{www.jalview.org}DoubleVector" minOccurs="0"/>
33    * &lt;/sequence>
34    * &lt;attribute name="rows" type="{http://www.w3.org/2001/XMLSchema}int" />
35    * &lt;attribute name="columns" type="{http://www.w3.org/2001/XMLSchema}int" />
36    * &lt;/restriction>
37    * &lt;/complexContent>
38    * &lt;/complexType>
39    * </pre>
40    *
41    *
42    */
43    @XmlAccessorType(XmlAccessType.FIELD)
44    @XmlType(name = "DoubleMatrix", namespace = "www.jalview.org", propOrder = {
45    "row",
46    "d",
47    "e"
48    })
 
49    public class DoubleMatrix {
50   
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;
60   
61    /**
62    * Gets the value of the row property.
63    *
64    * <p>
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.
69    *
70    * <p>
71    * For example, to add a new item, do as follows:
72    * <pre>
73    * getRow().add(newItem);
74    * </pre>
75    *
76    *
77    * <p>
78    * Objects of the following type(s) are allowed in the list
79    * {@link DoubleVector }
80    *
81    *
82    */
 
83  90 toggle public List<DoubleVector> getRow() {
84  90 if (row == null) {
85  3 row = new ArrayList<DoubleVector>();
86    }
87  90 return this.row;
88    }
89   
90    /**
91    * Gets the value of the d property.
92    *
93    * @return
94    * possible object is
95    * {@link DoubleVector }
96    *
97    */
 
98  5 toggle public DoubleVector getD() {
99  5 return d;
100    }
101   
102    /**
103    * Sets the value of the d property.
104    *
105    * @param value
106    * allowed object is
107    * {@link DoubleVector }
108    *
109    */
 
110  2 toggle public void setD(DoubleVector value) {
111  2 this.d = value;
112    }
113   
114    /**
115    * Gets the value of the e property.
116    *
117    * @return
118    * possible object is
119    * {@link DoubleVector }
120    *
121    */
 
122  5 toggle public DoubleVector getE() {
123  5 return e;
124    }
125   
126    /**
127    * Sets the value of the e property.
128    *
129    * @param value
130    * allowed object is
131    * {@link DoubleVector }
132    *
133    */
 
134  2 toggle public void setE(DoubleVector value) {
135  2 this.e = value;
136    }
137   
138    /**
139    * Gets the value of the rows property.
140    *
141    * @return
142    * possible object is
143    * {@link Integer }
144    *
145    */
 
146  3 toggle public Integer getRows() {
147  3 return rows;
148    }
149   
150    /**
151    * Sets the value of the rows property.
152    *
153    * @param value
154    * allowed object is
155    * {@link Integer }
156    *
157    */
 
158  3 toggle public void setRows(Integer value) {
159  3 this.rows = value;
160    }
161   
162    /**
163    * Gets the value of the columns property.
164    *
165    * @return
166    * possible object is
167    * {@link Integer }
168    *
169    */
 
170  0 toggle public Integer getColumns() {
171  0 return columns;
172    }
173   
174    /**
175    * Sets the value of the columns property.
176    *
177    * @param value
178    * allowed object is
179    * {@link Integer }
180    *
181    */
 
182  3 toggle public void setColumns(Integer value) {
183  3 this.columns = value;
184    }
185   
186    }