Class CourseSectionList
-
- All Implemented Interfaces:
public 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>
-
-
Constructor Summary
Constructors Constructor Description CourseSectionList()
-
Method Summary
Modifier and Type Method Description String
getStartPointCode()
Gets the value of the startPointCode property. void
setStartPointCode(String value)
Sets the value of the startPointCode property. List<CourseSection>
getCourseSection()
Gets the value of the courseSection property. String
getFinishPointCode()
Gets the value of the finishPointCode property. void
setFinishPointCode(String value)
Sets the value of the finishPointCode property. List<DistanceToFinish>
getDistanceToFinish()
Gets the value of the distanceToFinish property. -
-
Method Detail
-
getStartPointCode
String getStartPointCode()
Gets the value of the startPointCode property.
- Returns:
possibleobject is String
-
setStartPointCode
void setStartPointCode(String value)
Sets the value of the startPointCode property.
- Parameters:
value
- allowed object is String
-
getCourseSection
List<CourseSection> 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
set
method 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:
Thevalue of the courseSection property.
-
getFinishPointCode
String getFinishPointCode()
Gets the value of the finishPointCode property.
- Returns:
possibleobject is String
-
setFinishPointCode
void setFinishPointCode(String value)
Sets the value of the finishPointCode property.
- Parameters:
value
- allowed object is String
-
getDistanceToFinish
List<DistanceToFinish> 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
set
method 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:
Thevalue of the distanceToFinish property.
-
-
-
-