Package uk.org.siri.siri21
Class BoundingBoxStructure
- java.lang.Object
-
- uk.org.siri.siri21.BoundingBoxStructure
-
- All Implemented Interfaces:
Serializable
public class BoundingBoxStructure extends Object implements Serializable
Defines a bounding box using two corner points. GML terminology. +SIRI v2.0Java class for BoundingBoxStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BoundingBoxStructure"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="UpperLeft" type="{http://www.siri.org.uk/siri}LocationStructure"/> <element name="LowerRight" type="{http://www.siri.org.uk/siri}LocationStructure"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected LocationStructurelowerRightprotected LocationStructureupperLeft
-
Constructor Summary
Constructors Constructor Description BoundingBoxStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocationStructuregetLowerRight()Gets the value of the lowerRight property.LocationStructuregetUpperLeft()Gets the value of the upperLeft property.voidsetLowerRight(LocationStructure value)Sets the value of the lowerRight property.voidsetUpperLeft(LocationStructure value)Sets the value of the upperLeft property.
-
-
-
Field Detail
-
upperLeft
protected LocationStructure upperLeft
-
lowerRight
protected LocationStructure lowerRight
-
-
Method Detail
-
getUpperLeft
public LocationStructure getUpperLeft()
Gets the value of the upperLeft property.- Returns:
- possible object is
LocationStructure
-
setUpperLeft
public void setUpperLeft(LocationStructure value)
Sets the value of the upperLeft property.- Parameters:
value- allowed object isLocationStructure
-
getLowerRight
public LocationStructure getLowerRight()
Gets the value of the lowerRight property.- Returns:
- possible object is
LocationStructure
-
setLowerRight
public void setLowerRight(LocationStructure value)
Sets the value of the lowerRight property.- Parameters:
value- allowed object isLocationStructure
-
-