forked from nus-cs2103-AY2324S2/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from gingerbreaf/branch-UG+SampleUtil
Edit SampleUtil and UG
- Loading branch information
Showing
3 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,27 +31,27 @@ public static Person[] getSamplePersons() { | |
new Applicant(new Name("Alex Yeoh"), new Phone("87438807"), new Email("[email protected]"), | ||
EMPTY_REMARK, | ||
new ApplicantStatus(ApplicantState.STAGE_ONE.toString()), | ||
getTagSet("friends")), | ||
getTagSet()), | ||
new Applicant(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"), | ||
EMPTY_REMARK, | ||
new ApplicantStatus(ApplicantState.STAGE_ONE.toString()), | ||
getTagSet("colleagues", "friends")), | ||
getTagSet()), | ||
new Interviewer(new Name("Charlotte Oliveiro"), new Phone("93210283"), new Email("[email protected]"), | ||
EMPTY_REMARK, | ||
new InterviewerStatus(InterviewerState.FREE.toString()), | ||
getTagSet("neighbours")), | ||
getTagSet()), | ||
new Applicant(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"), | ||
EMPTY_REMARK, | ||
new ApplicantStatus(ApplicantState.STAGE_ONE.toString()), | ||
getTagSet("family")), | ||
getTagSet()), | ||
new Interviewer(new Name("Irfan Ibrahim"), new Phone("92492021"), new Email("[email protected]"), | ||
EMPTY_REMARK, | ||
new InterviewerStatus(InterviewerState.FREE.toString()), | ||
getTagSet("classmates")), | ||
getTagSet()), | ||
new Interviewer(new Name("Roy Balakrishnan"), new Phone("92624417"), new Email("[email protected]"), | ||
EMPTY_REMARK, | ||
new InterviewerStatus(InterviewerState.FREE.toString()), | ||
getTagSet("colleagues")) | ||
getTagSet()) | ||
}; | ||
} | ||
|
||
|