testtool.teacher_app.main_view
Class HomeView

java.lang.Object
  extended by testtool.teacher_app.main_view.HomeView

public abstract class HomeView
extends java.lang.Object

This class illustrates the main page of the teacher app. It has four functions that will take you to each of designated pages.


Constructor Summary
HomeView()
           
 
Method Summary
abstract  void launchGradeView()
          This functions takes a teacher from the main page to the grading page.
abstract  void launchPublishView()
          This takes the teacher from the main page to the page where they can administer a test.
abstract  void launchQuestionView()
          This takes a teacher from the main page to the page where they can manage questions.
abstract  void launchTestView()
          This page takes a teacher from the main page to the page where they can generate a test.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HomeView

public HomeView()
Method Detail

launchQuestionView

public abstract void launchQuestionView()
This takes a teacher from the main page to the page where they can manage questions.


launchTestView

public abstract void launchTestView()
This page takes a teacher from the main page to the page where they can generate a test.


launchPublishView

public abstract void launchPublishView()
This takes the teacher from the main page to the page where they can administer a test.


launchGradeView

public abstract void launchGradeView()
This functions takes a teacher from the main page to the grading page.