Class CourseData
-
- All Implemented Interfaces:
public class CourseData
Java class for anonymous complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{}IOFVersion" minOccurs="0"/> <element ref="{}Map" minOccurs="0"/> <element ref="{}StartPoint" maxOccurs="unbounded" minOccurs="0"/> <element ref="{}Control" maxOccurs="unbounded" minOccurs="0"/> <element ref="{}FinishPoint" maxOccurs="unbounded" minOccurs="0"/> <element ref="{}Course" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description CourseData()
-
Method Summary
Modifier and Type Method Description IOFVersion
getIOFVersion()
Gets the value of the iofVersion property. void
setIOFVersion(IOFVersion value)
Sets the value of the iofVersion property. Map
getMap()
Gets the value of the map property. void
setMap(Map value)
Sets the value of the map property. List<StartPoint>
getStartPoint()
Gets the value of the startPoint property. List<Control>
getControl()
Gets the value of the control property. List<FinishPoint>
getFinishPoint()
Gets the value of the finishPoint property. List<Course>
getCourse()
Gets the value of the course property. -
-
Method Detail
-
getIOFVersion
IOFVersion getIOFVersion()
Gets the value of the iofVersion property.
- Returns:
possibleobject is IOFVersion
-
setIOFVersion
void setIOFVersion(IOFVersion value)
Sets the value of the iofVersion property.
- Parameters:
value
- allowed object is IOFVersion
-
setMap
void setMap(Map value)
Sets the value of the map property.
- Parameters:
value
- allowed object is Map
-
getStartPoint
List<StartPoint> getStartPoint()
Gets the value of the startPoint 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
set
method for the startPoint property.For example, to add a new item, do as follows:
getStartPoint().add(newItem);
Objects of the following type(s) are allowed in the list StartPoint
- Returns:
Thevalue of the startPoint property.
-
getControl
List<Control> getControl()
Gets the value of the control 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
set
method for the control property.For example, to add a new item, do as follows:
getControl().add(newItem);
Objects of the following type(s) are allowed in the list Control
- Returns:
Thevalue of the control property.
-
getFinishPoint
List<FinishPoint> getFinishPoint()
Gets the value of the finishPoint 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
set
method for the finishPoint property.For example, to add a new item, do as follows:
getFinishPoint().add(newItem);
Objects of the following type(s) are allowed in the list FinishPoint
- Returns:
Thevalue of the finishPoint property.
-
getCourse
List<Course> getCourse()
Gets the value of the course 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
set
method for the course property.For example, to add a new item, do as follows:
getCourse().add(newItem);
Objects of the following type(s) are allowed in the list Course
- Returns:
Thevalue of the course property.
-
-
-
-