// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // �nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.12.13 um 03:20:53 PM CET // package de.dfki.nlp.domain.pubmed; import javax.xml.bind.annotation.*; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import java.util.ArrayList; import java.util.List; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "author" }) @XmlRootElement(name = "AuthorList") public class AuthorList { @XmlAttribute(name = "CompleteYN") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String completeYN; @XmlAttribute(name = "Type") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; @XmlElement(name = "Author", required = true) protected List<Author> author; /** * Ruft den Wert der completeYN-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCompleteYN() { if (completeYN == null) { return "Y"; } else { return completeYN; } } /** * Legt den Wert der completeYN-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCompleteYN(String value) { this.completeYN = value; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the author property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the author property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAuthor().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Author } * * */ public List<Author> getAuthor() { if (author == null) { author = new ArrayList<Author>(); } return this.author; } }