Skip to content
RadioData.java 3.26 KiB
Newer Older
xtof's avatar
xtof committed
//
// Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.8-b130911.1802 
// Voir <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source. 
// Généré le : 2019.08.04 à 06:45:14 PM CEST 
//


package org.avmdti.AmsatList.generated;

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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Classe Java pour anonymous complex type.
 * 
 * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
 * 
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element ref="{}Beacons" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element ref="{}Transponders" maxOccurs="unbounded" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "beacons",
    "transponders"
})
@XmlRootElement(name = "RadioData")
public class RadioData {

    @XmlElement(name = "Beacons")
    protected List<Beacons> beacons;
    @XmlElement(name = "Transponders")
    protected List<Transponders> transponders;

    /**
     * Gets the value of the beacons 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 beacons property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getBeacons().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link Beacons }
     * 
     * 
     */
    public List<Beacons> getBeacons() {
        if (beacons == null) {
            beacons = new ArrayList<Beacons>();
        }
        return this.beacons;
    }

    /**
     * Gets the value of the transponders 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 transponders property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getTransponders().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link Transponders }
     * 
     * 
     */
    public List<Transponders> getTransponders() {
        if (transponders == null) {
            transponders = new ArrayList<Transponders>();
        }
        return this.transponders;
    }

}