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

org.xmlnetwork.AsList Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2008.06.03 at 04:27:27 PM CEST 
//


package org.xmlnetwork;

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.XmlType;


/**
 * 

Java class for asList complex type. * *

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

 * <complexType name="asList">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AS" type="{http://www.xmlnetwork.org}as" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Confederations" type="{http://www.xmlnetwork.org}confederations" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "asList", propOrder = { "as", "confederations" }) public class AsList { @XmlElement(name = "AS") protected List as; @XmlElement(name = "Confederations") protected Confederations confederations; /** * Gets the value of the as property. * *

* 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 set method for the as property. * *

* For example, to add a new item, do as follows: *

     *    getAS().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link As } * * */ public List getAS() { if (as == null) { as = new ArrayList(); } return this.as; } /** * Gets the value of the confederations property. * * @return * possible object is * {@link Confederations } * */ public Confederations getConfederations() { return confederations; } /** * Sets the value of the confederations property. * * @param value * allowed object is * {@link Confederations } * */ public void setConfederations(Confederations value) { this.confederations = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy