// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.06.03 at 01:03:34 AM EDT // package org.mindinformatics.services.connector.pubmed.fetch; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <sequence> * <element ref="{}LastName"/> * <choice minOccurs="0"> * <element ref="{}ForeName"/> * <sequence> * <element ref="{}FirstName"/> * <element ref="{}MiddleName" minOccurs="0"/> * </sequence> * </choice> * <element ref="{}Initials" minOccurs="0"/> * <element ref="{}Suffix" minOccurs="0"/> * </sequence> * <element ref="{}Affiliation" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lastName", "foreName", "firstName", "middleName", "initials", "suffix", "affiliation" }) @XmlRootElement(name = "Investigator") public class Investigator { @XmlElement(name = "LastName", required = true) protected LastName lastName; @XmlElement(name = "ForeName") protected ForeName foreName; @XmlElement(name = "FirstName") protected FirstName firstName; @XmlElement(name = "MiddleName") protected MiddleName middleName; @XmlElement(name = "Initials") protected Initials initials; @XmlElement(name = "Suffix") protected Suffix suffix; @XmlElement(name = "Affiliation") protected Affiliation affiliation; /** * Gets the value of the lastName property. * * @return * possible object is * {@link LastName } * */ public LastName getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link LastName } * */ public void setLastName(LastName value) { this.lastName = value; } /** * Gets the value of the foreName property. * * @return * possible object is * {@link ForeName } * */ public ForeName getForeName() { return foreName; } /** * Sets the value of the foreName property. * * @param value * allowed object is * {@link ForeName } * */ public void setForeName(ForeName value) { this.foreName = value; } /** * Gets the value of the firstName property. * * @return * possible object is * {@link FirstName } * */ public FirstName getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link FirstName } * */ public void setFirstName(FirstName value) { this.firstName = value; } /** * Gets the value of the middleName property. * * @return * possible object is * {@link MiddleName } * */ public MiddleName getMiddleName() { return middleName; } /** * Sets the value of the middleName property. * * @param value * allowed object is * {@link MiddleName } * */ public void setMiddleName(MiddleName value) { this.middleName = value; } /** * Gets the value of the initials property. * * @return * possible object is * {@link Initials } * */ public Initials getInitials() { return initials; } /** * Sets the value of the initials property. * * @param value * allowed object is * {@link Initials } * */ public void setInitials(Initials value) { this.initials = value; } /** * Gets the value of the suffix property. * * @return * possible object is * {@link Suffix } * */ public Suffix getSuffix() { return suffix; } /** * Sets the value of the suffix property. * * @param value * allowed object is * {@link Suffix } * */ public void setSuffix(Suffix value) { this.suffix = value; } /** * Gets the value of the affiliation property. * * @return * possible object is * {@link Affiliation } * */ public Affiliation getAffiliation() { return affiliation; } /** * Sets the value of the affiliation property. * * @param value * allowed object is * {@link Affiliation } * */ public void setAffiliation(Affiliation value) { this.affiliation = value; } }