package Grades; import Visual.*; import Info.*; import Prediction.*; import Reports.*; import Assignments.*; import java.util.Collection; /** * Grade represents a grade for an Assignment */ public class Grade { /** * The max points of an assignment */ public long maxPoints; /** * The value of the grade */ public long grade; /** * The weight the grade holds compared to the total points */ public long weight; }