[CT414]: Add Assignment 1 progress

This commit is contained in:
2025-01-24 00:37:30 +00:00
parent 887c2c3d7d
commit 2d340bda25
6 changed files with 169 additions and 0 deletions

View File

@ -15,4 +15,7 @@ public interface ApplicationForm extends Remote {
// method to provide a String answer to a question based off its questionNumber
void answerQuestion(int questionNumber, String answer) throws RemoteException, IllegalArgumentException;
// method to return the applicant's name, for use in naming application files
String getName() throws RemoteException;
}