First commit

This commit is contained in:
2025-09-10 14:25:37 -04:00
parent dfbabbd9cd
commit 1fdbcd7fb8
161 changed files with 13820 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
package grading;
/**
* An interface for implementing a grade with a key and a value to store the score.
*/
public interface Grade extends Comparable<Grade>
{
/**
* @return The key of for this Grade
*/
public String getKey();
/**
* @return The value for this Grade
*/
public Double getValue();
}