package grade;

import test.Test;

/**
 * This dialog presents the user with a list of questions to grade on the test
 */
public abstract class TestGradeQuestionSelector {

   /**
    * The model(s) for the Select Question Table.
    */
   public Test selectQuestionTableTest;

   /**
    * Opens the selected question for grading.
    */
   public abstract void open();

   /**
    * Returns to the test selection page.
    */
   public abstract void back();

   /**
    * Returns to the main teacher landing page.
    */
   public abstract void home();
}