Package uk.org.siri.siri13
Class ParameterisedActionStructure
- java.lang.Object
-
- uk.org.siri.siri13.SimpleActionStructure
-
- uk.org.siri.siri13.ParameterisedActionStructure
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ManualActionStructure,PublishToDisplayAction,PublishToMobileAction,PublishToTvAction,PublishToWebAction,PushedActionStructure
public class ParameterisedActionStructure extends SimpleActionStructure implements Serializable
Type for parameterised ie user definable actions.Java class for ParameterisedActionStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ParameterisedActionStructure"> <complexContent> <extension base="{http://www.siri.org.uk/siri}SimpleActionStructure"> <sequence> <element name="Description" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" minOccurs="0"/> <element name="ActionData" type="{http://www.siri.org.uk/siri}ActionDataStructure" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ActionDataStructure>actionDatasprotected NaturalLanguageStringStructuredescription-
Fields inherited from class uk.org.siri.siri13.SimpleActionStructure
actionStatus
-
-
Constructor Summary
Constructors Constructor Description ParameterisedActionStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ActionDataStructure>getActionDatas()Gets the value of the actionDatas property.NaturalLanguageStringStructuregetDescription()Gets the value of the description property.voidsetDescription(NaturalLanguageStringStructure value)Sets the value of the description property.-
Methods inherited from class uk.org.siri.siri13.SimpleActionStructure
getActionStatus, setActionStatus
-
-
-
-
Field Detail
-
description
protected NaturalLanguageStringStructure description
-
actionDatas
protected List<ActionDataStructure> actionDatas
-
-
Method Detail
-
getDescription
public NaturalLanguageStringStructure getDescription()
Gets the value of the description property.- Returns:
- possible object is
NaturalLanguageStringStructure
-
setDescription
public void setDescription(NaturalLanguageStringStructure value)
Sets the value of the description property.- Parameters:
value- allowed object isNaturalLanguageStringStructure
-
getActionDatas
public List<ActionDataStructure> getActionDatas()
Gets the value of the actionDatas 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 actionDatas property.For example, to add a new item, do as follows:
getActionDatas().add(newItem);Objects of the following type(s) are allowed in the list
ActionDataStructure
-
-