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>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<FinishPoint>protected IOFVersionprotected Mapprotected List<StartPoint> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the control property.Gets the value of the course property.Gets the value of the finishPoint property.Gets the value of the iofVersion property.getMap()Gets the value of the map property.Gets the value of the startPoint property.voidsetIOFVersion(IOFVersion value) Sets the value of the iofVersion property.voidSets the value of the map property.
-
Field Details
-
iofVersion
-
map
-
startPoint
-
control
-
finishPoint
-
course
-
-
Constructor Details
-
CourseData
public CourseData()
-
-
Method Details
-
getIOFVersion
Gets the value of the iofVersion property.- Returns:
- possible object is
IOFVersion
-
setIOFVersion
Sets the value of the iofVersion property.- Parameters:
value- allowed object isIOFVersion
-
getMap
Gets the value of the map property.- Returns:
- possible object is
Map
-
setMap
Sets the value of the map property.- Parameters:
value- allowed object isMap
-
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
setmethod 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:
- The value of the startPoint property.
-
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
setmethod 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:
- The value of the control property.
-
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
setmethod 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:
- The value of the finishPoint property.
-
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
setmethod 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:
- The value of the course property.
-