Package net.wirelabs.jmaps.example.gpx
Class PtType
- java.lang.Object
-
- net.wirelabs.jmaps.example.gpx.PtType
-
public class PtType extends Object
A geographic point with optional elevation and time. Available for use by other schemas.Java class for ptType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ptType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ele" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> <element name="time" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> </sequence> <attribute name="lat" use="required" type="{http://www.topografix.com/GPX/1/1}latitudeType" /> <attribute name="lon" use="required" type="{http://www.topografix.com/GPX/1/1}longitudeType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigDecimaleleprotected BigDecimallatprotected BigDecimallonprotected XMLGregorianCalendartime
-
Constructor Summary
Constructors Constructor Description PtType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetEle()Gets the value of the ele property.BigDecimalgetLat()Gets the value of the lat property.BigDecimalgetLon()Gets the value of the lon property.XMLGregorianCalendargetTime()Gets the value of the time property.voidsetEle(BigDecimal value)Sets the value of the ele property.voidsetLat(BigDecimal value)Sets the value of the lat property.voidsetLon(BigDecimal value)Sets the value of the lon property.voidsetTime(XMLGregorianCalendar value)Sets the value of the time property.
-
-
-
Field Detail
-
ele
protected BigDecimal ele
-
time
protected XMLGregorianCalendar time
-
lat
protected BigDecimal lat
-
lon
protected BigDecimal lon
-
-
Method Detail
-
getEle
public BigDecimal getEle()
Gets the value of the ele property.- Returns:
- possible object is
BigDecimal
-
setEle
public void setEle(BigDecimal value)
Sets the value of the ele property.- Parameters:
value- allowed object isBigDecimal
-
getTime
public XMLGregorianCalendar getTime()
Gets the value of the time property.- Returns:
- possible object is
XMLGregorianCalendar
-
setTime
public void setTime(XMLGregorianCalendar value)
Sets the value of the time property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getLat
public BigDecimal getLat()
Gets the value of the lat property.- Returns:
- possible object is
BigDecimal
-
setLat
public void setLat(BigDecimal value)
Sets the value of the lat property.- Parameters:
value- allowed object isBigDecimal
-
getLon
public BigDecimal getLon()
Gets the value of the lon property.- Returns:
- possible object is
BigDecimal
-
setLon
public void setLon(BigDecimal value)
Sets the value of the lon property.- Parameters:
value- allowed object isBigDecimal
-
-