All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.wustl.nrg.xnat.MrSessionData 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.wustl.nrg.xnat;

/*-
 * #%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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * An event in which MR scans are obtained on a subject
 * 
 * 

Java class for mrSessionData complex type. * *

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

 * <complexType name="mrSessionData">
 *   <complexContent>
 *     <extension base="{http://nrg.wustl.edu/xnat}imageSessionData">
 *       <sequence minOccurs="0">
 *         <element name="coil" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="255"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="fieldStrength" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="255"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="marker" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="255"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="stabilization" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="255"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "mrSessionData", propOrder = { "coil", "fieldStrength", "marker", "stabilization" }) public class MrSessionData extends ImageSessionData { protected String coil; protected String fieldStrength; protected String marker; protected String stabilization; /** * Gets the value of the coil property. * * @return * possible object is * {@link String } * */ public String getCoil() { return coil; } /** * Sets the value of the coil property. * * @param value * allowed object is * {@link String } * */ public void setCoil(String value) { this.coil = value; } /** * Gets the value of the fieldStrength property. * * @return * possible object is * {@link String } * */ public String getFieldStrength() { return fieldStrength; } /** * Sets the value of the fieldStrength property. * * @param value * allowed object is * {@link String } * */ public void setFieldStrength(String value) { this.fieldStrength = value; } /** * Gets the value of the marker property. * * @return * possible object is * {@link String } * */ public String getMarker() { return marker; } /** * Sets the value of the marker property. * * @param value * allowed object is * {@link String } * */ public void setMarker(String value) { this.marker = value; } /** * Gets the value of the stabilization property. * * @return * possible object is * {@link String } * */ public String getStabilization() { return stabilization; } /** * Sets the value of the stabilization property. * * @param value * allowed object is * {@link String } * */ public void setStabilization(String value) { this.stabilization = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy