Package iofXml.v3

Class Schedule

java.lang.Object
iofXml.v3.Schedule

public class Schedule extends Object
Defines 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>
 
  • Field Details

    • startTime

      protected XMLGregorianCalendar startTime
      The start time of the sub-event.
    • endTime

      protected XMLGregorianCalendar endTime
      The end time of the sub-event.
    • name

      protected String name
      The name or title of the sub-event.
    • venue

      protected String venue
      The name of the place where the sub-event occurs.
    • position

      protected GeoPosition position
      The geographical position of the sub-event.
    • details

      protected String details
      Any extra information about the sub-event.
    • modifyTime

      protected XMLGregorianCalendar modifyTime
  • Constructor Details

    • Schedule

      public Schedule()
  • Method Details