Class Schedule
-
- All Implemented Interfaces:
public class ScheduleDefines the schedule of sub-events that comprise the entire orienteering event, e.g. banquets, social events and awards ceremonies.
Java class for Schedule complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Schedule"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="EndTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Venue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Position" type="{http://www.orienteering.org/datastandard/3.0}GeoPosition" minOccurs="0"/> <element name="Details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Schedule()
-
Method Summary
Modifier and Type Method Description XMLGregorianCalendargetStartTime()The start time of the sub-event. voidsetStartTime(XMLGregorianCalendar value)Sets the value of the startTime property. XMLGregorianCalendargetEndTime()The end time of the sub-event. voidsetEndTime(XMLGregorianCalendar value)Sets the value of the endTime property. StringgetName()The name or title of the sub-event. voidsetName(String value)Sets the value of the name property. StringgetVenue()The name of the place where the sub-event occurs. voidsetVenue(String value)Sets the value of the venue property. GeoPositiongetPosition()The geographical position of the sub-event. voidsetPosition(GeoPosition value)Sets the value of the position property. StringgetDetails()Any extra information about the sub-event. voidsetDetails(String value)Sets the value of the details property. XMLGregorianCalendargetModifyTime()Gets the value of the modifyTime property. voidsetModifyTime(XMLGregorianCalendar value)Sets the value of the modifyTime property. -
-
Method Detail
-
getStartTime
XMLGregorianCalendar getStartTime()
The start time of the sub-event.
- Returns:
possibleobject is XMLGregorianCalendar
-
setStartTime
void setStartTime(XMLGregorianCalendar value)
Sets the value of the startTime property.
- Parameters:
value- allowed object is XMLGregorianCalendar
-
getEndTime
XMLGregorianCalendar getEndTime()
The end time of the sub-event.
- Returns:
possibleobject is XMLGregorianCalendar
-
setEndTime
void setEndTime(XMLGregorianCalendar value)
Sets the value of the endTime property.
- Parameters:
value- allowed object is XMLGregorianCalendar
-
setName
void setName(String value)
Sets the value of the name property.
- Parameters:
value- allowed object is String
-
getVenue
String getVenue()
The name of the place where the sub-event occurs.
- Returns:
possibleobject is String
-
setVenue
void setVenue(String value)
Sets the value of the venue property.
- Parameters:
value- allowed object is String
-
getPosition
GeoPosition getPosition()
The geographical position of the sub-event.
- Returns:
possibleobject is GeoPosition
-
setPosition
void setPosition(GeoPosition value)
Sets the value of the position property.
- Parameters:
value- allowed object is GeoPosition
-
getDetails
String getDetails()
Any extra information about the sub-event.
- Returns:
possibleobject is String
-
setDetails
void setDetails(String value)
Sets the value of the details property.
- Parameters:
value- allowed object is String
-
getModifyTime
XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.
- Returns:
possibleobject is XMLGregorianCalendar
-
setModifyTime
void setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property.
- Parameters:
value- allowed object is XMLGregorianCalendar
-
-
-
-