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

uk.org.ifopt.siri21.ZoneProjection Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.07 at 02:19:41 PM UTC 
//


package uk.org.ifopt.siri21;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Type for PROJECTION as a geospatial zone.
 * 
 * 

Java class for ZoneProjectionStructure complex type. * *

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

 * <complexType name="ZoneProjectionStructure">
 *   <complexContent>
 *     <extension base="{http://www.ifopt.org.uk/ifopt}AbstractProjection">
 *       <sequence>
 *         <element name="Boundary" maxOccurs="unbounded">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element ref="{http://www.ifopt.org.uk/ifopt}PointProjection" maxOccurs="unbounded" minOccurs="3"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ZoneProjectionStructure", propOrder = { "boundaries" }) @XmlRootElement(name = "ZoneProjection") public class ZoneProjection extends AbstractProjection implements Serializable { @XmlElement(name = "Boundary", required = true) protected List boundaries; /** * Gets the value of the boundaries 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 Jakarta XML Binding object. * This is why there is not a set method for the boundaries property. * *

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

     *    getBoundaries().add(newItem);
     * 
* * *

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

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element ref="{http://www.ifopt.org.uk/ifopt}PointProjection" maxOccurs="unbounded" minOccurs="3"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "pointProjections" }) public static class Boundary implements Serializable { @XmlElement(name = "PointProjection", required = true) protected List pointProjections; /** * Gets the value of the pointProjections 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 Jakarta XML Binding object. * This is why there is not a set method for the pointProjections property. * *

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

         *    getPointProjections().add(newItem);
         * 
* * *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy