package testtool.Tests; import testtool.Questions.*; import testtool.StudentFunctionality.*; import testtool.MainUIFunctionality.*; import java.util.Collection; /** * * A GradedTest is a test that has been taken and graded. It * contains the score recieved on each question and the total grade, along with the components of a TakenTest. * * @author * @version * **/ public class GradedTest extends TakenTest { /** Default Constructor **/ public GradedTest() { super(); } protected Collection s; protected double g; protected Collection c; }