edu.wfubmc.imagelab.wfucvrg.UsAnalysisData Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.09.16 at 05:54:20 PM EDT
//
package edu.wfubmc.imagelab.wfucvrg;
/*-
* #%L
* XNAT Data Source Backend
* %%
* Copyright (C) 2015 - 2016 Emory University
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import edu.wustl.nrg.xnat.ImageAssessorData;
/**
* Java class for usAnalysisData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="usAnalysisData">
* <complexContent>
* <extension base="{http://nrg.wustl.edu/xnat}imageAssessorData">
* <sequence>
* <element name="patientID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="echoSBP" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="echoDBP" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="lvot" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="tr" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="ivs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="pw" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="lved" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="lves" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="la" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="diastolicArea" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="diastolicVolume" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="diastolicLongAxis" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="systolicArea" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="systolicVolume" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="systolicLongAxis" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="leftAtriumArea" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="leftAtriumVolume" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="leftAtriumLongAxis" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="leftAtriumLateralAxis" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="ePeak" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="aPeak" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="eaRatio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "usAnalysisData", propOrder = {
"patientID",
"echoSBP",
"echoDBP",
"lvot",
"tr",
"ivs",
"pw",
"lved",
"lves",
"la",
"diastolicArea",
"diastolicVolume",
"diastolicLongAxis",
"systolicArea",
"systolicVolume",
"systolicLongAxis",
"leftAtriumArea",
"leftAtriumVolume",
"leftAtriumLongAxis",
"leftAtriumLateralAxis",
"ePeak",
"aPeak",
"eaRatio"
})
public class UsAnalysisData
extends ImageAssessorData
{
protected String patientID;
protected BigInteger echoSBP;
protected BigInteger echoDBP;
protected Float lvot;
protected BigInteger tr;
protected Float ivs;
protected Float pw;
protected Float lved;
protected Float lves;
protected Float la;
protected Float diastolicArea;
protected Float diastolicVolume;
protected Float diastolicLongAxis;
protected Float systolicArea;
protected Float systolicVolume;
protected Float systolicLongAxis;
protected Float leftAtriumArea;
protected Float leftAtriumVolume;
protected Float leftAtriumLongAxis;
protected Float leftAtriumLateralAxis;
protected Float ePeak;
protected Float aPeak;
protected Float eaRatio;
/**
* Gets the value of the patientID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPatientID() {
return patientID;
}
/**
* Sets the value of the patientID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPatientID(String value) {
this.patientID = value;
}
/**
* Gets the value of the echoSBP property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getEchoSBP() {
return echoSBP;
}
/**
* Sets the value of the echoSBP property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEchoSBP(BigInteger value) {
this.echoSBP = value;
}
/**
* Gets the value of the echoDBP property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getEchoDBP() {
return echoDBP;
}
/**
* Sets the value of the echoDBP property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setEchoDBP(BigInteger value) {
this.echoDBP = value;
}
/**
* Gets the value of the lvot property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLvot() {
return lvot;
}
/**
* Sets the value of the lvot property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLvot(Float value) {
this.lvot = value;
}
/**
* Gets the value of the tr property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTr() {
return tr;
}
/**
* Sets the value of the tr property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTr(BigInteger value) {
this.tr = value;
}
/**
* Gets the value of the ivs property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getIvs() {
return ivs;
}
/**
* Sets the value of the ivs property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setIvs(Float value) {
this.ivs = value;
}
/**
* Gets the value of the pw property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getPw() {
return pw;
}
/**
* Sets the value of the pw property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setPw(Float value) {
this.pw = value;
}
/**
* Gets the value of the lved property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLved() {
return lved;
}
/**
* Sets the value of the lved property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLved(Float value) {
this.lved = value;
}
/**
* Gets the value of the lves property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLves() {
return lves;
}
/**
* Sets the value of the lves property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLves(Float value) {
this.lves = value;
}
/**
* Gets the value of the la property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLa() {
return la;
}
/**
* Sets the value of the la property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLa(Float value) {
this.la = value;
}
/**
* Gets the value of the diastolicArea property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getDiastolicArea() {
return diastolicArea;
}
/**
* Sets the value of the diastolicArea property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setDiastolicArea(Float value) {
this.diastolicArea = value;
}
/**
* Gets the value of the diastolicVolume property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getDiastolicVolume() {
return diastolicVolume;
}
/**
* Sets the value of the diastolicVolume property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setDiastolicVolume(Float value) {
this.diastolicVolume = value;
}
/**
* Gets the value of the diastolicLongAxis property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getDiastolicLongAxis() {
return diastolicLongAxis;
}
/**
* Sets the value of the diastolicLongAxis property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setDiastolicLongAxis(Float value) {
this.diastolicLongAxis = value;
}
/**
* Gets the value of the systolicArea property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getSystolicArea() {
return systolicArea;
}
/**
* Sets the value of the systolicArea property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setSystolicArea(Float value) {
this.systolicArea = value;
}
/**
* Gets the value of the systolicVolume property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getSystolicVolume() {
return systolicVolume;
}
/**
* Sets the value of the systolicVolume property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setSystolicVolume(Float value) {
this.systolicVolume = value;
}
/**
* Gets the value of the systolicLongAxis property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getSystolicLongAxis() {
return systolicLongAxis;
}
/**
* Sets the value of the systolicLongAxis property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setSystolicLongAxis(Float value) {
this.systolicLongAxis = value;
}
/**
* Gets the value of the leftAtriumArea property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLeftAtriumArea() {
return leftAtriumArea;
}
/**
* Sets the value of the leftAtriumArea property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLeftAtriumArea(Float value) {
this.leftAtriumArea = value;
}
/**
* Gets the value of the leftAtriumVolume property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLeftAtriumVolume() {
return leftAtriumVolume;
}
/**
* Sets the value of the leftAtriumVolume property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLeftAtriumVolume(Float value) {
this.leftAtriumVolume = value;
}
/**
* Gets the value of the leftAtriumLongAxis property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLeftAtriumLongAxis() {
return leftAtriumLongAxis;
}
/**
* Sets the value of the leftAtriumLongAxis property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLeftAtriumLongAxis(Float value) {
this.leftAtriumLongAxis = value;
}
/**
* Gets the value of the leftAtriumLateralAxis property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getLeftAtriumLateralAxis() {
return leftAtriumLateralAxis;
}
/**
* Sets the value of the leftAtriumLateralAxis property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setLeftAtriumLateralAxis(Float value) {
this.leftAtriumLateralAxis = value;
}
/**
* Gets the value of the ePeak property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getEPeak() {
return ePeak;
}
/**
* Sets the value of the ePeak property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setEPeak(Float value) {
this.ePeak = value;
}
/**
* Gets the value of the aPeak property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getAPeak() {
return aPeak;
}
/**
* Sets the value of the aPeak property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setAPeak(Float value) {
this.aPeak = value;
}
/**
* Gets the value of the eaRatio property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getEaRatio() {
return eaRatio;
}
/**
* Sets the value of the eaRatio property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setEaRatio(Float value) {
this.eaRatio = value;
}
}