Info
Class BasicInfo

java.lang.Object
  extended by Info.BasicInfo

public abstract class BasicInfo
extends java.lang.Object

Represents the basic info of a class


Field Summary
 java.lang.String className
          The name of the class.
 java.util.Collection<Day> days
          The days the class is in session.
 Time endTime
          The time the class ends.
 boolean hasLab
          Determines if there is a lab portion to the class.
 Time labEndtime
          The time the lab ends.
 Time labStartTime
          The time the lab begins.
 Quarter quarter
          The quarter the class takes place.
 Time startTime
          The time the class begins.
 int year
          The year the class takes place.
 
Constructor Summary
BasicInfo()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

className

public java.lang.String className
The name of the class.


quarter

public Quarter quarter
The quarter the class takes place.


year

public int year
The year the class takes place.


startTime

public Time startTime
The time the class begins.


endTime

public Time endTime
The time the class ends.


days

public java.util.Collection<Day> days
The days the class is in session.


hasLab

public boolean hasLab
Determines if there is a lab portion to the class.


labStartTime

public Time labStartTime
The time the lab begins.


labEndtime

public Time labEndtime
The time the lab ends.

Constructor Detail

BasicInfo

public BasicInfo()