// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // 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: 2014.03.07 at 11:12:55 AM EST // package org.t3as.metamap.jaxb; /* * #%L * NICTA t3as SNOMED service common classes * %% * Copyright (C) 2014 NICTA * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * * Additional permission under GNU GPL version 3 section 7 * * If you modify this Program, or any covered work, by linking or combining * it with H2, GWT, or JavaBeans Activation Framework (JAF) (or a * modified version of those libraries), containing parts covered by the * terms of the H2 License, the GWT Terms, or the Common Development and * Distribution License (CDDL) version 1.0 ,the licensors of this Program * grant you additional permission to convey the resulting work. * #L% */ import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "candidate" }) @XmlRootElement(name = "Candidates") public class Candidates { @XmlAttribute(name = "Total", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String total; @XmlAttribute(name = "Excluded", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String excluded; @XmlAttribute(name = "Pruned", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String pruned; @XmlAttribute(name = "Remaining", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String remaining; @XmlElement(name = "Candidate") protected List<Candidate> candidate; /** * Gets the value of the total property. * * @return * possible object is * {@link String } * */ public String getTotal() { return total; } /** * Sets the value of the total property. * * @param value * allowed object is * {@link String } * */ public void setTotal(String value) { this.total = value; } /** * Gets the value of the excluded property. * * @return * possible object is * {@link String } * */ public String getExcluded() { return excluded; } /** * Sets the value of the excluded property. * * @param value * allowed object is * {@link String } * */ public void setExcluded(String value) { this.excluded = value; } /** * Gets the value of the pruned property. * * @return * possible object is * {@link String } * */ public String getPruned() { return pruned; } /** * Sets the value of the pruned property. * * @param value * allowed object is * {@link String } * */ public void setPruned(String value) { this.pruned = value; } /** * Gets the value of the remaining property. * * @return * possible object is * {@link String } * */ public String getRemaining() { return remaining; } /** * Sets the value of the remaining property. * * @param value * allowed object is * {@link String } * */ public void setRemaining(String value) { this.remaining = value; } /** * Gets the value of the candidate 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 candidate property. * * <p> * For example, to add a new item, do as follows: * <pre> * getCandidate().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Candidate } * * */ public List<Candidate> getCandidate() { if (candidate == null) { candidate = new ArrayList<Candidate>(); } return this.candidate; } }