Package uk.org.siri.siri21
Class RemarkContentStructure
- java.lang.Object
-
- uk.org.siri.siri21.RemarkContentStructure
-
- All Implemented Interfaces:
Serializable
public class RemarkContentStructure extends Object implements Serializable
Java class for RemarkContentStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RemarkContentStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Remark" type="{http://www.siri.org.uk/siri}DefaultedTextStructure" maxOccurs="unbounded"/> <element name="RemarkPriority" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected BigIntegerremarkPriorityprotected List<DefaultedTextStructure>remarks
-
Constructor Summary
Constructors Constructor Description RemarkContentStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetRemarkPriority()Gets the value of the remarkPriority property.List<DefaultedTextStructure>getRemarks()Gets the value of the remarks property.voidsetRemarkPriority(BigInteger value)Sets the value of the remarkPriority property.
-
-
-
Field Detail
-
remarks
protected List<DefaultedTextStructure> remarks
-
remarkPriority
protected BigInteger remarkPriority
-
-
Method Detail
-
getRemarks
public List<DefaultedTextStructure> getRemarks()
Gets the value of the remarks 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 remarks property.For example, to add a new item, do as follows:
getRemarks().add(newItem);Objects of the following type(s) are allowed in the list
DefaultedTextStructure
-
getRemarkPriority
public BigInteger getRemarkPriority()
Gets the value of the remarkPriority property.- Returns:
- possible object is
BigInteger
-
setRemarkPriority
public void setRemarkPriority(BigInteger value)
Sets the value of the remarkPriority property.- Parameters:
value- allowed object isBigInteger
-
-