package grade;

public abstract class Comment {
   int startIndex; // Marks where the comment is being recorded
                   // to in the StudentResponse string.
   int endIndex;
   String comment;
}