JAL-3251 added optional attributes Sequence.biotype, Mapping.mappingType
[jalview.git] / src / jalview / xml / binding / jalview / PcaDataType.java
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:14:40 PM BST 
6 //
7
8
9 package jalview.xml.binding.jalview;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18  * 
19  *                              The results of a PCA calculation
20  *                      
21  * 
22  * <p>Java class for PcaDataType complex type.
23  * 
24  * <p>The following schema fragment specifies the expected content contained within this class.
25  * 
26  * <pre>
27  * &lt;complexType name="PcaDataType">
28  *   &lt;complexContent>
29  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30  *       &lt;sequence>
31  *         &lt;element name="pairwiseMatrix" type="{www.jalview.org}DoubleMatrix"/>
32  *         &lt;element name="tridiagonalMatrix" type="{www.jalview.org}DoubleMatrix"/>
33  *         &lt;element name="eigenMatrix" type="{www.jalview.org}DoubleMatrix"/>
34  *       &lt;/sequence>
35  *     &lt;/restriction>
36  *   &lt;/complexContent>
37  * &lt;/complexType>
38  * </pre>
39  * 
40  * 
41  */
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "PcaDataType", namespace = "www.jalview.org", propOrder = {
44     "pairwiseMatrix",
45     "tridiagonalMatrix",
46     "eigenMatrix"
47 })
48 public class PcaDataType {
49
50     @XmlElement(required = true)
51     protected DoubleMatrix pairwiseMatrix;
52     @XmlElement(required = true)
53     protected DoubleMatrix tridiagonalMatrix;
54     @XmlElement(required = true)
55     protected DoubleMatrix eigenMatrix;
56
57     /**
58      * Gets the value of the pairwiseMatrix property.
59      * 
60      * @return
61      *     possible object is
62      *     {@link DoubleMatrix }
63      *     
64      */
65     public DoubleMatrix getPairwiseMatrix() {
66         return pairwiseMatrix;
67     }
68
69     /**
70      * Sets the value of the pairwiseMatrix property.
71      * 
72      * @param value
73      *     allowed object is
74      *     {@link DoubleMatrix }
75      *     
76      */
77     public void setPairwiseMatrix(DoubleMatrix value) {
78         this.pairwiseMatrix = value;
79     }
80
81     /**
82      * Gets the value of the tridiagonalMatrix property.
83      * 
84      * @return
85      *     possible object is
86      *     {@link DoubleMatrix }
87      *     
88      */
89     public DoubleMatrix getTridiagonalMatrix() {
90         return tridiagonalMatrix;
91     }
92
93     /**
94      * Sets the value of the tridiagonalMatrix property.
95      * 
96      * @param value
97      *     allowed object is
98      *     {@link DoubleMatrix }
99      *     
100      */
101     public void setTridiagonalMatrix(DoubleMatrix value) {
102         this.tridiagonalMatrix = value;
103     }
104
105     /**
106      * Gets the value of the eigenMatrix property.
107      * 
108      * @return
109      *     possible object is
110      *     {@link DoubleMatrix }
111      *     
112      */
113     public DoubleMatrix getEigenMatrix() {
114         return eigenMatrix;
115     }
116
117     /**
118      * Sets the value of the eigenMatrix property.
119      * 
120      * @param value
121      *     allowed object is
122      *     {@link DoubleMatrix }
123      *     
124      */
125     public void setEigenMatrix(DoubleMatrix value) {
126         this.eigenMatrix = value;
127     }
128
129 }