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

oasis.names.tc.emergency.edxl.de._1.TargetAreaType Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.11 at 11:39:13 AM EST 
//


package oasis.names.tc.emergency.edxl.de._1;

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


/**
 * 

Java class for targetAreaType complex type. * *

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

 * <complexType name="targetAreaType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="circle" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="polygon" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="subdivision" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="locCodeUN" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "targetAreaType", propOrder = { "circle", "polygon", "country", "subdivision", "locCodeUN" }) public class TargetAreaType { protected List circle; protected List polygon; protected List country; protected List subdivision; protected List locCodeUN; /** * Gets the value of the circle 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 circle property. * *

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

     *    getCircle().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getCircle() { if (circle == null) { circle = new ArrayList(); } return this.circle; } /** * Gets the value of the polygon 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 polygon property. * *

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

     *    getPolygon().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getPolygon() { if (polygon == null) { polygon = new ArrayList(); } return this.polygon; } /** * Gets the value of the country 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 country property. * *

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

     *    getCountry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getCountry() { if (country == null) { country = new ArrayList(); } return this.country; } /** * Gets the value of the subdivision 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 subdivision property. * *

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

     *    getSubdivision().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getSubdivision() { if (subdivision == null) { subdivision = new ArrayList(); } return this.subdivision; } /** * Gets the value of the locCodeUN 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 locCodeUN property. * *

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

     *    getLocCodeUN().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getLocCodeUN() { if (locCodeUN == null) { locCodeUN = new ArrayList(); } return this.locCodeUN; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy