Package uk.org.siri.siri13
Class EstimatedVersionFrameStructure
- java.lang.Object
-
- uk.org.siri.siri13.AbstractItemStructure
-
- uk.org.siri.siri13.EstimatedVersionFrameStructure
-
- All Implemented Interfaces:
Serializable
public class EstimatedVersionFrameStructure extends AbstractItemStructure implements Serializable
Type for version frame strcuture.Java class for EstimatedVersionFrameStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EstimatedVersionFrameStructure"> <complexContent> <extension base="{http://www.siri.org.uk/siri}AbstractItemStructure"> <sequence> <element ref="{http://www.siri.org.uk/siri}VersionRef" minOccurs="0"/> <element ref="{http://www.siri.org.uk/siri}EstimatedVehicleJourney" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EstimatedVehicleJourney>estimatedVehicleJourneiesprotected StringversionRef-
Fields inherited from class uk.org.siri.siri13.AbstractItemStructure
recordedAtTime
-
-
Constructor Summary
Constructors Constructor Description EstimatedVersionFrameStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EstimatedVehicleJourney>getEstimatedVehicleJourneies()Gets the value of the estimatedVehicleJourneies property.StringgetVersionRef()Gets the value of the versionRef property.voidsetVersionRef(String value)Sets the value of the versionRef property.-
Methods inherited from class uk.org.siri.siri13.AbstractItemStructure
getRecordedAtTime, setRecordedAtTime
-
-
-
-
Field Detail
-
versionRef
protected String versionRef
-
estimatedVehicleJourneies
protected List<EstimatedVehicleJourney> estimatedVehicleJourneies
-
-
Method Detail
-
getVersionRef
public String getVersionRef()
Gets the value of the versionRef property.- Returns:
- possible object is
String
-
setVersionRef
public void setVersionRef(String value)
Sets the value of the versionRef property.- Parameters:
value- allowed object isString
-
getEstimatedVehicleJourneies
public List<EstimatedVehicleJourney> getEstimatedVehicleJourneies()
Gets the value of the estimatedVehicleJourneies 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
setmethod for the estimatedVehicleJourneies property.For example, to add a new item, do as follows:
getEstimatedVehicleJourneies().add(newItem);Objects of the following type(s) are allowed in the list
EstimatedVehicleJourney
-
-