admin
Class CourseDB

java.lang.Object
  extended by admin.CourseDB

public abstract class CourseDB
extends java.lang.Object

A courseDB object is generated by the CourseDB generator and contains records relating to all the courses.


Field Summary
(package private)  java.util.Collection<Course> courseDB
          The collection of courses that have been added to the database
 
Constructor Summary
CourseDB()
           
 
Method Summary
abstract  void add(Course course)
          The add function add a course to the temporary database
abstract  void remove(Course course)
          The remove function will remove the course from the database
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

courseDB

java.util.Collection<Course> courseDB
The collection of courses that have been added to the database

Constructor Detail

CourseDB

public CourseDB()
Method Detail

add

public abstract void add(Course course)
The add function add a course to the temporary database


remove

public abstract void remove(Course course)
The remove function will remove the course from the database