package grader.Main; import java.util.Collection; /** * * A Database is the repository of registered user information. It is a collection of UserRecords. * * @author * @version * **/ public class Database { /** Default Constructor **/ public Database() { } protected Collection data; }