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

uk.org.siri.siri20.AffectedStopPlaceComponentStructure 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:39 PM UTC 
//


package uk.org.siri.siri20;

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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import uk.org.ifopt.siri20.AccessibilityFeatureEnumeration;
import uk.org.ifopt.siri20.LinkProjection;
import uk.org.ifopt.siri20.PointProjection;
import uk.org.ifopt.siri20.StopPlaceComponentRefStructure;
import uk.org.ifopt.siri20.StopPlaceComponentTypeEnumeration;
import uk.org.ifopt.siri20.ZoneProjection;


/**
 * Type for information about the quays affected by an SITUATION.
 * 
 * 

Java class for AffectedStopPlaceComponentStructure complex type. * *

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

 * <complexType name="AffectedStopPlaceComponentStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}AffectedStopPlaceElementStructure">
 *       <sequence>
 *         <element name="ComponentRef" type="{http://www.ifopt.org.uk/ifopt}StopPlaceComponentRefStructure"/>
 *         <element name="ComponentName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ComponentType" type="{http://www.ifopt.org.uk/ifopt}StopPlaceComponentTypeEnumeration" minOccurs="0"/>
 *         <group ref="{http://www.ifopt.org.uk/ifopt}PlaceProjectionGroup" minOccurs="0"/>
 *         <element name="Offset" type="{http://www.siri.org.uk/siri}OffsetStructure" minOccurs="0"/>
 *         <element name="AccessFeatureType" type="{http://www.ifopt.org.uk/ifopt}AccessibilityFeatureEnumeration" minOccurs="0"/>
 *         <element name="AffectedFacilities" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="AffectedFacility" type="{http://www.siri.org.uk/siri}AffectedFacilityStructure" maxOccurs="unbounded"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AffectedStopPlaceComponentStructure", propOrder = { "componentRef", "componentNames", "componentType", "pointProjection", "linkProjection", "zoneProjection", "offset", "accessFeatureType", "affectedFacilities", "extensions" }) public class AffectedStopPlaceComponentStructure extends AffectedStopPlaceElementStructure implements Serializable { @XmlElement(name = "ComponentRef", required = true) protected StopPlaceComponentRefStructure componentRef; @XmlElement(name = "ComponentName") protected List componentNames; @XmlElement(name = "ComponentType") @XmlSchemaType(name = "string") protected StopPlaceComponentTypeEnumeration componentType; @XmlElement(name = "PointProjection", namespace = "http://www.ifopt.org.uk/ifopt") protected PointProjection pointProjection; @XmlElement(name = "LinkProjection", namespace = "http://www.ifopt.org.uk/ifopt") protected LinkProjection linkProjection; @XmlElement(name = "ZoneProjection", namespace = "http://www.ifopt.org.uk/ifopt") protected ZoneProjection zoneProjection; @XmlElement(name = "Offset") protected OffsetStructure offset; @XmlElement(name = "AccessFeatureType") @XmlSchemaType(name = "string") protected AccessibilityFeatureEnumeration accessFeatureType; @XmlElement(name = "AffectedFacilities") protected AffectedStopPlaceComponentStructure.AffectedFacilities affectedFacilities; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the componentRef property. * * @return * possible object is * {@link StopPlaceComponentRefStructure } * */ public StopPlaceComponentRefStructure getComponentRef() { return componentRef; } /** * Sets the value of the componentRef property. * * @param value * allowed object is * {@link StopPlaceComponentRefStructure } * */ public void setComponentRef(StopPlaceComponentRefStructure value) { this.componentRef = value; } /** * Gets the value of the componentNames 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 componentNames property. * *

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

     *    getComponentNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getComponentNames() { if (componentNames == null) { componentNames = new ArrayList(); } return this.componentNames; } /** * Gets the value of the componentType property. * * @return * possible object is * {@link StopPlaceComponentTypeEnumeration } * */ public StopPlaceComponentTypeEnumeration getComponentType() { return componentType; } /** * Sets the value of the componentType property. * * @param value * allowed object is * {@link StopPlaceComponentTypeEnumeration } * */ public void setComponentType(StopPlaceComponentTypeEnumeration value) { this.componentType = value; } /** * Gets the value of the pointProjection property. * * @return * possible object is * {@link PointProjection } * */ public PointProjection getPointProjection() { return pointProjection; } /** * Sets the value of the pointProjection property. * * @param value * allowed object is * {@link PointProjection } * */ public void setPointProjection(PointProjection value) { this.pointProjection = value; } /** * Gets the value of the linkProjection property. * * @return * possible object is * {@link LinkProjection } * */ public LinkProjection getLinkProjection() { return linkProjection; } /** * Sets the value of the linkProjection property. * * @param value * allowed object is * {@link LinkProjection } * */ public void setLinkProjection(LinkProjection value) { this.linkProjection = value; } /** * Gets the value of the zoneProjection property. * * @return * possible object is * {@link ZoneProjection } * */ public ZoneProjection getZoneProjection() { return zoneProjection; } /** * Sets the value of the zoneProjection property. * * @param value * allowed object is * {@link ZoneProjection } * */ public void setZoneProjection(ZoneProjection value) { this.zoneProjection = value; } /** * Gets the value of the offset property. * * @return * possible object is * {@link OffsetStructure } * */ public OffsetStructure getOffset() { return offset; } /** * Sets the value of the offset property. * * @param value * allowed object is * {@link OffsetStructure } * */ public void setOffset(OffsetStructure value) { this.offset = value; } /** * Gets the value of the accessFeatureType property. * * @return * possible object is * {@link AccessibilityFeatureEnumeration } * */ public AccessibilityFeatureEnumeration getAccessFeatureType() { return accessFeatureType; } /** * Sets the value of the accessFeatureType property. * * @param value * allowed object is * {@link AccessibilityFeatureEnumeration } * */ public void setAccessFeatureType(AccessibilityFeatureEnumeration value) { this.accessFeatureType = value; } /** * Gets the value of the affectedFacilities property. * * @return * possible object is * {@link AffectedStopPlaceComponentStructure.AffectedFacilities } * */ public AffectedStopPlaceComponentStructure.AffectedFacilities getAffectedFacilities() { return affectedFacilities; } /** * Sets the value of the affectedFacilities property. * * @param value * allowed object is * {@link AffectedStopPlaceComponentStructure.AffectedFacilities } * */ public void setAffectedFacilities(AffectedStopPlaceComponentStructure.AffectedFacilities value) { this.affectedFacilities = value; } /** * Gets the value of the extensions property. * * @return * possible object is * {@link Extensions } * */ public Extensions getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is * {@link Extensions } * */ public void setExtensions(Extensions value) { this.extensions = value; } /** *

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 name="AffectedFacility" type="{http://www.siri.org.uk/siri}AffectedFacilityStructure" maxOccurs="unbounded"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "affectedFacilities" }) public static class AffectedFacilities implements Serializable { @XmlElement(name = "AffectedFacility", required = true) protected List affectedFacilities; /** * Gets the value of the affectedFacilities 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 affectedFacilities property. * *

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

         *    getAffectedFacilities().add(newItem);
         * 
* * *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy