Class CourseSectionList
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="{}StartPointCode" minOccurs="0"/>
<element ref="{}CourseSection" maxOccurs="unbounded"/>
<element ref="{}FinishPointCode" minOccurs="0"/>
<element ref="{}DistanceToFinish" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<CourseSection>protected List<DistanceToFinish>protected Stringprotected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the courseSection property.Gets the value of the distanceToFinish property.Gets the value of the finishPointCode property.Gets the value of the startPointCode property.voidsetFinishPointCode(String value) Sets the value of the finishPointCode property.voidsetStartPointCode(String value) Sets the value of the startPointCode property.
-
Field Details
-
startPointCode
-
courseSection
-
finishPointCode
-
distanceToFinish
-
-
Constructor Details
-
CourseSectionList
public CourseSectionList()
-
-
Method Details
-
getStartPointCode
Gets the value of the startPointCode property.- Returns:
- possible object is
String
-
setStartPointCode
Sets the value of the startPointCode property.- Parameters:
value- allowed object isString
-
getCourseSection
Gets the value of the courseSection 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 courseSection property.For example, to add a new item, do as follows:
getCourseSection().add(newItem);
Objects of the following type(s) are allowed in the list
CourseSection- Returns:
- The value of the courseSection property.
-
getFinishPointCode
Gets the value of the finishPointCode property.- Returns:
- possible object is
String
-
setFinishPointCode
Sets the value of the finishPointCode property.- Parameters:
value- allowed object isString
-
getDistanceToFinish
Gets the value of the distanceToFinish 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 distanceToFinish property.For example, to add a new item, do as follows:
getDistanceToFinish().add(newItem);
Objects of the following type(s) are allowed in the list
DistanceToFinish- Returns:
- The value of the distanceToFinish property.
-