CLRA 0.1.2

Uses of Class
com.clra.rowing.Attendance

Packages that use Attendance
com.clra.rowing   
 

Uses of Attendance in com.clra.rowing
 

Fields in com.clra.rowing declared as Attendance
static Attendance Attendance.PRESENT
           
static Attendance Attendance.ABSENT
           
 

Methods in com.clra.rowing that return Attendance
 Attendance IParticipant.getAttendance()
          Returns the attendance of a participant at a rowing session, or null if attendance has not been marked.
static Attendance Attendance.getAttendance(String name)
          Attendance is not a required field in a participant record, therefore if a null or blank name is passed to this method, an IllegalArgumentException is NOT thrown, but rather a null instance is returned.
 Attendance ParticipantSnapshot.getAttendance()
          Returns the attendance of a participant at a rowing session, or null if a participant has not been assigned an attendance.
 

Methods in com.clra.rowing with parameters of type Attendance
 void IParticipant.setAttendance(Attendance attendance, IRowingSession session)
          Marks the attendance of a participant at a rowing session.
 

Constructors in com.clra.rowing with parameters of type Attendance
ParticipantSnapshot(Integer memberId, Integer rowingId, Integer participantId, SeatPreference preference, Integer replacesId, Integer initialSeatId, Integer finalSeatId, Attendance attendance)
           
Participant2Snapshot(Integer memberId, MemberName memberName, Integer rowingId, Integer participantId, SeatPreference preference, Integer replacesId, Integer initialSeatId, Integer finalSeatId, Attendance attendance)
           
 


CLRA 0.1.2