diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000000..050505ce79e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "interactive" +} diff --git a/README.md b/README.md index 16208adb9b6..82889ae177d 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,18 @@ -[![CI Status](https://github.com/se-edu/addressbook-level3/workflows/Java%20CI/badge.svg)](https://github.com/se-edu/addressbook-level3/actions) +# HRelper + +[![CI Status](https://github.com/se-edu/addressbook-level3/workflows/Java%20CI/badge.svg)](https://github.com/AY2425S2-CS2103T-F14-2/tp/actions) ![Ui](docs/images/Ui.png) +![UiProfile](docs/images/ViewImage.png) -* This is **a sample project for Software Engineering (SE) students**.
+* This project is based on the **AddressBook-Level3 project** created by the [SE-EDU initiative](https://se-education.org).
Example usages: * as a starting point of a course project (as opposed to writing everything from scratch) * as a case study * The project simulates an ongoing software project for a desktop application (called _AddressBook_) used for managing contact details. * It is **written in OOP fashion**. It provides a **reasonably well-written** code base **bigger** (around 6 KLoC) than what students usually write in beginner-level SE modules, without being overwhelmingly big. * It comes with a **reasonable level of user and developer documentation**. -* It is named `AddressBook Level 3` (`AB3` for short) because it was initially created as a part of a series of `AddressBook` projects (`Level 1`, `Level 2`, `Level 3` ...). +* It is named `HRelper`, and it is specially designed for HRs of companies, to enable HRs to quickly access and manage employee and job seeker information, streamlining recruitment and communication within the company. * For the detailed documentation of this project, see the **[Address Book Product Website](https://se-education.org/addressbook-level3)**. * This project is a **part of the se-education.org** initiative. If you would like to contribute code to this project, see [se-education.org](https://se-education.org/#contributing-to-se-edu) for more info. +🐌 diff --git a/bin/main/images/address_book_32.png b/bin/main/images/address_book_32.png new file mode 100644 index 00000000000..29810cf1fd9 Binary files /dev/null and b/bin/main/images/address_book_32.png differ diff --git a/bin/main/images/calendar.png b/bin/main/images/calendar.png new file mode 100644 index 00000000000..8b2bdf4f1c1 Binary files /dev/null and b/bin/main/images/calendar.png differ diff --git a/bin/main/images/clock.png b/bin/main/images/clock.png new file mode 100644 index 00000000000..0807cbf6451 Binary files /dev/null and b/bin/main/images/clock.png differ diff --git a/bin/main/images/fail.png b/bin/main/images/fail.png new file mode 100644 index 00000000000..6daf01290dd Binary files /dev/null and b/bin/main/images/fail.png differ diff --git a/bin/main/images/help_icon.png b/bin/main/images/help_icon.png new file mode 100644 index 00000000000..f8e80d6c1c5 Binary files /dev/null and b/bin/main/images/help_icon.png differ diff --git a/bin/main/images/info_icon.png b/bin/main/images/info_icon.png new file mode 100644 index 00000000000..f8cef714095 Binary files /dev/null and b/bin/main/images/info_icon.png differ diff --git a/bin/main/seedu/address/AppParameters.class b/bin/main/seedu/address/AppParameters.class new file mode 100644 index 00000000000..a849196488f Binary files /dev/null and b/bin/main/seedu/address/AppParameters.class differ diff --git a/bin/main/seedu/address/Main.class b/bin/main/seedu/address/Main.class new file mode 100644 index 00000000000..aeb70e4d0c3 Binary files /dev/null and b/bin/main/seedu/address/Main.class differ diff --git a/bin/main/seedu/address/MainApp.class b/bin/main/seedu/address/MainApp.class new file mode 100644 index 00000000000..27a0cf08822 Binary files /dev/null and b/bin/main/seedu/address/MainApp.class differ diff --git a/bin/main/seedu/address/commons/core/Config.class b/bin/main/seedu/address/commons/core/Config.class new file mode 100644 index 00000000000..e77db5acc9e Binary files /dev/null and b/bin/main/seedu/address/commons/core/Config.class differ diff --git a/bin/main/seedu/address/commons/core/GuiSettings.class b/bin/main/seedu/address/commons/core/GuiSettings.class new file mode 100644 index 00000000000..b6e9d4e5dbb Binary files /dev/null and b/bin/main/seedu/address/commons/core/GuiSettings.class differ diff --git a/bin/main/seedu/address/commons/core/LogsCenter.class b/bin/main/seedu/address/commons/core/LogsCenter.class new file mode 100644 index 00000000000..916a21ae0e3 Binary files /dev/null and b/bin/main/seedu/address/commons/core/LogsCenter.class differ diff --git a/bin/main/seedu/address/commons/core/Version.class b/bin/main/seedu/address/commons/core/Version.class new file mode 100644 index 00000000000..60acbe72e0f Binary files /dev/null and b/bin/main/seedu/address/commons/core/Version.class differ diff --git a/bin/main/seedu/address/commons/core/index/Index.class b/bin/main/seedu/address/commons/core/index/Index.class new file mode 100644 index 00000000000..fa6a9cefcd1 Binary files /dev/null and b/bin/main/seedu/address/commons/core/index/Index.class differ diff --git a/bin/main/seedu/address/commons/exceptions/DataLoadingException.class b/bin/main/seedu/address/commons/exceptions/DataLoadingException.class new file mode 100644 index 00000000000..1f1054ff245 Binary files /dev/null and b/bin/main/seedu/address/commons/exceptions/DataLoadingException.class differ diff --git a/bin/main/seedu/address/commons/exceptions/IllegalValueException.class b/bin/main/seedu/address/commons/exceptions/IllegalValueException.class new file mode 100644 index 00000000000..5c3b4bb191d Binary files /dev/null and b/bin/main/seedu/address/commons/exceptions/IllegalValueException.class differ diff --git a/bin/main/seedu/address/commons/util/AppUtil.class b/bin/main/seedu/address/commons/util/AppUtil.class new file mode 100644 index 00000000000..2aaa17fc264 Binary files /dev/null and b/bin/main/seedu/address/commons/util/AppUtil.class differ diff --git a/bin/main/seedu/address/commons/util/CollectionUtil.class b/bin/main/seedu/address/commons/util/CollectionUtil.class new file mode 100644 index 00000000000..c641cde7527 Binary files /dev/null and b/bin/main/seedu/address/commons/util/CollectionUtil.class differ diff --git a/bin/main/seedu/address/commons/util/ConfigUtil.class b/bin/main/seedu/address/commons/util/ConfigUtil.class new file mode 100644 index 00000000000..143f4ebd0ca Binary files /dev/null and b/bin/main/seedu/address/commons/util/ConfigUtil.class differ diff --git a/bin/main/seedu/address/commons/util/FileUtil.class b/bin/main/seedu/address/commons/util/FileUtil.class new file mode 100644 index 00000000000..60c284f41b4 Binary files /dev/null and b/bin/main/seedu/address/commons/util/FileUtil.class differ diff --git a/bin/main/seedu/address/commons/util/JsonUtil$LevelDeserializer.class b/bin/main/seedu/address/commons/util/JsonUtil$LevelDeserializer.class new file mode 100644 index 00000000000..1d6d6b0a0c0 Binary files /dev/null and b/bin/main/seedu/address/commons/util/JsonUtil$LevelDeserializer.class differ diff --git a/bin/main/seedu/address/commons/util/JsonUtil.class b/bin/main/seedu/address/commons/util/JsonUtil.class new file mode 100644 index 00000000000..1a727d5843f Binary files /dev/null and b/bin/main/seedu/address/commons/util/JsonUtil.class differ diff --git a/bin/main/seedu/address/commons/util/StringUtil.class b/bin/main/seedu/address/commons/util/StringUtil.class new file mode 100644 index 00000000000..d4de4f01220 Binary files /dev/null and b/bin/main/seedu/address/commons/util/StringUtil.class differ diff --git a/bin/main/seedu/address/commons/util/ToStringBuilder.class b/bin/main/seedu/address/commons/util/ToStringBuilder.class new file mode 100644 index 00000000000..f378e40adc2 Binary files /dev/null and b/bin/main/seedu/address/commons/util/ToStringBuilder.class differ diff --git a/bin/main/seedu/address/logic/Logic.class b/bin/main/seedu/address/logic/Logic.class new file mode 100644 index 00000000000..e33d1582f6b Binary files /dev/null and b/bin/main/seedu/address/logic/Logic.class differ diff --git a/bin/main/seedu/address/logic/LogicManager.class b/bin/main/seedu/address/logic/LogicManager.class new file mode 100644 index 00000000000..9699fad8b28 Binary files /dev/null and b/bin/main/seedu/address/logic/LogicManager.class differ diff --git a/bin/main/seedu/address/logic/Messages.class b/bin/main/seedu/address/logic/Messages.class new file mode 100644 index 00000000000..548ef53f2d7 Binary files /dev/null and b/bin/main/seedu/address/logic/Messages.class differ diff --git a/bin/main/seedu/address/logic/commands/AddCommand.class b/bin/main/seedu/address/logic/commands/AddCommand.class new file mode 100644 index 00000000000..2622dd697e2 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/AddCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/ClearCommand.class b/bin/main/seedu/address/logic/commands/ClearCommand.class new file mode 100644 index 00000000000..70623988138 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/ClearCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/Command.class b/bin/main/seedu/address/logic/commands/Command.class new file mode 100644 index 00000000000..c9db35e1710 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/Command.class differ diff --git a/bin/main/seedu/address/logic/commands/CommandResult.class b/bin/main/seedu/address/logic/commands/CommandResult.class new file mode 100644 index 00000000000..16e675869bb Binary files /dev/null and b/bin/main/seedu/address/logic/commands/CommandResult.class differ diff --git a/bin/main/seedu/address/logic/commands/DeleteCommand.class b/bin/main/seedu/address/logic/commands/DeleteCommand.class new file mode 100644 index 00000000000..c2172c890ab Binary files /dev/null and b/bin/main/seedu/address/logic/commands/DeleteCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/EditCommand$EditPersonDescriptor.class b/bin/main/seedu/address/logic/commands/EditCommand$EditPersonDescriptor.class new file mode 100644 index 00000000000..d7fe457a2a8 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/EditCommand$EditPersonDescriptor.class differ diff --git a/bin/main/seedu/address/logic/commands/EditCommand.class b/bin/main/seedu/address/logic/commands/EditCommand.class new file mode 100644 index 00000000000..ff538c4bc4b Binary files /dev/null and b/bin/main/seedu/address/logic/commands/EditCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/ExitCommand.class b/bin/main/seedu/address/logic/commands/ExitCommand.class new file mode 100644 index 00000000000..bf2f455506f Binary files /dev/null and b/bin/main/seedu/address/logic/commands/ExitCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/FindByDepartmentCommand.class b/bin/main/seedu/address/logic/commands/FindByDepartmentCommand.class new file mode 100644 index 00000000000..9f925e92470 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/FindByDepartmentCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/FindByEmploymentTypeCommand.class b/bin/main/seedu/address/logic/commands/FindByEmploymentTypeCommand.class new file mode 100644 index 00000000000..f735d741a22 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/FindByEmploymentTypeCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/FindByJobTitleCommand.class b/bin/main/seedu/address/logic/commands/FindByJobTitleCommand.class new file mode 100644 index 00000000000..377879b519d Binary files /dev/null and b/bin/main/seedu/address/logic/commands/FindByJobTitleCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/FindCommand.class b/bin/main/seedu/address/logic/commands/FindCommand.class new file mode 100644 index 00000000000..1bce4cdbcf6 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/FindCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/HelpCommand.class b/bin/main/seedu/address/logic/commands/HelpCommand.class new file mode 100644 index 00000000000..98c306e14d4 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/HelpCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/ListCommand.class b/bin/main/seedu/address/logic/commands/ListCommand.class new file mode 100644 index 00000000000..c751adae8b1 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/ListCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/NoteCommand.class b/bin/main/seedu/address/logic/commands/NoteCommand.class new file mode 100644 index 00000000000..b26bf574869 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/NoteCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/ViewCommand.class b/bin/main/seedu/address/logic/commands/ViewCommand.class new file mode 100644 index 00000000000..c216b307731 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/ViewCommand.class differ diff --git a/bin/main/seedu/address/logic/commands/exceptions/CommandException.class b/bin/main/seedu/address/logic/commands/exceptions/CommandException.class new file mode 100644 index 00000000000..3c13e77f966 Binary files /dev/null and b/bin/main/seedu/address/logic/commands/exceptions/CommandException.class differ diff --git a/bin/main/seedu/address/logic/parser/AddCommandParser.class b/bin/main/seedu/address/logic/parser/AddCommandParser.class new file mode 100644 index 00000000000..ea6e473d173 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/AddCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/AddressBookParser.class b/bin/main/seedu/address/logic/parser/AddressBookParser.class new file mode 100644 index 00000000000..2ffc31d36fa Binary files /dev/null and b/bin/main/seedu/address/logic/parser/AddressBookParser.class differ diff --git a/bin/main/seedu/address/logic/parser/ArgumentMultimap.class b/bin/main/seedu/address/logic/parser/ArgumentMultimap.class new file mode 100644 index 00000000000..6ec597022aa Binary files /dev/null and b/bin/main/seedu/address/logic/parser/ArgumentMultimap.class differ diff --git a/bin/main/seedu/address/logic/parser/ArgumentTokenizer$PrefixPosition.class b/bin/main/seedu/address/logic/parser/ArgumentTokenizer$PrefixPosition.class new file mode 100644 index 00000000000..6a5b47712d6 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/ArgumentTokenizer$PrefixPosition.class differ diff --git a/bin/main/seedu/address/logic/parser/ArgumentTokenizer.class b/bin/main/seedu/address/logic/parser/ArgumentTokenizer.class new file mode 100644 index 00000000000..578c11267cf Binary files /dev/null and b/bin/main/seedu/address/logic/parser/ArgumentTokenizer.class differ diff --git a/bin/main/seedu/address/logic/parser/CliSyntax.class b/bin/main/seedu/address/logic/parser/CliSyntax.class new file mode 100644 index 00000000000..7a63b8a27f1 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/CliSyntax.class differ diff --git a/bin/main/seedu/address/logic/parser/DeleteCommandParser.class b/bin/main/seedu/address/logic/parser/DeleteCommandParser.class new file mode 100644 index 00000000000..9e84a714aee Binary files /dev/null and b/bin/main/seedu/address/logic/parser/DeleteCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/EditCommandParser.class b/bin/main/seedu/address/logic/parser/EditCommandParser.class new file mode 100644 index 00000000000..fef4e2029a2 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/EditCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/FindByDepartmentCommandParser.class b/bin/main/seedu/address/logic/parser/FindByDepartmentCommandParser.class new file mode 100644 index 00000000000..92b6785502c Binary files /dev/null and b/bin/main/seedu/address/logic/parser/FindByDepartmentCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/FindByEmploymentTypeCommandParser.class b/bin/main/seedu/address/logic/parser/FindByEmploymentTypeCommandParser.class new file mode 100644 index 00000000000..fcb8019cb38 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/FindByEmploymentTypeCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/FindByJobTitleCommandParser.class b/bin/main/seedu/address/logic/parser/FindByJobTitleCommandParser.class new file mode 100644 index 00000000000..3ea112a19e2 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/FindByJobTitleCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/FindCommandParser.class b/bin/main/seedu/address/logic/parser/FindCommandParser.class new file mode 100644 index 00000000000..39b0e2ca391 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/FindCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/NoteCommandParser.class b/bin/main/seedu/address/logic/parser/NoteCommandParser.class new file mode 100644 index 00000000000..51214696bc0 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/NoteCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/Parser.class b/bin/main/seedu/address/logic/parser/Parser.class new file mode 100644 index 00000000000..850c8a46a9b Binary files /dev/null and b/bin/main/seedu/address/logic/parser/Parser.class differ diff --git a/bin/main/seedu/address/logic/parser/ParserUtil.class b/bin/main/seedu/address/logic/parser/ParserUtil.class new file mode 100644 index 00000000000..7cd6bdedce4 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/ParserUtil.class differ diff --git a/bin/main/seedu/address/logic/parser/Prefix.class b/bin/main/seedu/address/logic/parser/Prefix.class new file mode 100644 index 00000000000..83fdbc507e8 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/Prefix.class differ diff --git a/bin/main/seedu/address/logic/parser/ViewCommandParser.class b/bin/main/seedu/address/logic/parser/ViewCommandParser.class new file mode 100644 index 00000000000..e80d85f07aa Binary files /dev/null and b/bin/main/seedu/address/logic/parser/ViewCommandParser.class differ diff --git a/bin/main/seedu/address/logic/parser/exceptions/ParseException.class b/bin/main/seedu/address/logic/parser/exceptions/ParseException.class new file mode 100644 index 00000000000..9f016040621 Binary files /dev/null and b/bin/main/seedu/address/logic/parser/exceptions/ParseException.class differ diff --git a/bin/main/seedu/address/model/AddressBook.class b/bin/main/seedu/address/model/AddressBook.class new file mode 100644 index 00000000000..7b81ad3ee86 Binary files /dev/null and b/bin/main/seedu/address/model/AddressBook.class differ diff --git a/bin/main/seedu/address/model/Model.class b/bin/main/seedu/address/model/Model.class new file mode 100644 index 00000000000..d663aa468ca Binary files /dev/null and b/bin/main/seedu/address/model/Model.class differ diff --git a/bin/main/seedu/address/model/ModelManager.class b/bin/main/seedu/address/model/ModelManager.class new file mode 100644 index 00000000000..6138f17b9c6 Binary files /dev/null and b/bin/main/seedu/address/model/ModelManager.class differ diff --git a/bin/main/seedu/address/model/ReadOnlyAddressBook.class b/bin/main/seedu/address/model/ReadOnlyAddressBook.class new file mode 100644 index 00000000000..b5e5d6a37c5 Binary files /dev/null and b/bin/main/seedu/address/model/ReadOnlyAddressBook.class differ diff --git a/bin/main/seedu/address/model/ReadOnlyUserPrefs.class b/bin/main/seedu/address/model/ReadOnlyUserPrefs.class new file mode 100644 index 00000000000..b0b0f1bdaed Binary files /dev/null and b/bin/main/seedu/address/model/ReadOnlyUserPrefs.class differ diff --git a/bin/main/seedu/address/model/UserPrefs.class b/bin/main/seedu/address/model/UserPrefs.class new file mode 100644 index 00000000000..60743a54418 Binary files /dev/null and b/bin/main/seedu/address/model/UserPrefs.class differ diff --git a/bin/main/seedu/address/model/person/Address.class b/bin/main/seedu/address/model/person/Address.class new file mode 100644 index 00000000000..f00fcc42970 Binary files /dev/null and b/bin/main/seedu/address/model/person/Address.class differ diff --git a/bin/main/seedu/address/model/person/DateOfJoining.class b/bin/main/seedu/address/model/person/DateOfJoining.class new file mode 100644 index 00000000000..0aed8ee4f49 Binary files /dev/null and b/bin/main/seedu/address/model/person/DateOfJoining.class differ diff --git a/bin/main/seedu/address/model/person/DepartmentContainsKeywordPredicate.class b/bin/main/seedu/address/model/person/DepartmentContainsKeywordPredicate.class new file mode 100644 index 00000000000..b8634dffd75 Binary files /dev/null and b/bin/main/seedu/address/model/person/DepartmentContainsKeywordPredicate.class differ diff --git a/bin/main/seedu/address/model/person/Dob.class b/bin/main/seedu/address/model/person/Dob.class new file mode 100644 index 00000000000..d719c9ec3a8 Binary files /dev/null and b/bin/main/seedu/address/model/person/Dob.class differ diff --git a/bin/main/seedu/address/model/person/Email.class b/bin/main/seedu/address/model/person/Email.class new file mode 100644 index 00000000000..bd0dc54ec2e Binary files /dev/null and b/bin/main/seedu/address/model/person/Email.class differ diff --git a/bin/main/seedu/address/model/person/EmploymentTypeContainsKeywordPredicate.class b/bin/main/seedu/address/model/person/EmploymentTypeContainsKeywordPredicate.class new file mode 100644 index 00000000000..96d4c775799 Binary files /dev/null and b/bin/main/seedu/address/model/person/EmploymentTypeContainsKeywordPredicate.class differ diff --git a/bin/main/seedu/address/model/person/Gender.class b/bin/main/seedu/address/model/person/Gender.class new file mode 100644 index 00000000000..3085a603034 Binary files /dev/null and b/bin/main/seedu/address/model/person/Gender.class differ diff --git a/bin/main/seedu/address/model/person/JobTitleContainsKeywordPredicate.class b/bin/main/seedu/address/model/person/JobTitleContainsKeywordPredicate.class new file mode 100644 index 00000000000..21595ef62e9 Binary files /dev/null and b/bin/main/seedu/address/model/person/JobTitleContainsKeywordPredicate.class differ diff --git a/bin/main/seedu/address/model/person/Name.class b/bin/main/seedu/address/model/person/Name.class new file mode 100644 index 00000000000..b322f2d87e1 Binary files /dev/null and b/bin/main/seedu/address/model/person/Name.class differ diff --git a/bin/main/seedu/address/model/person/NameContainsKeywordsPredicate.class b/bin/main/seedu/address/model/person/NameContainsKeywordsPredicate.class new file mode 100644 index 00000000000..a427b82776c Binary files /dev/null and b/bin/main/seedu/address/model/person/NameContainsKeywordsPredicate.class differ diff --git a/bin/main/seedu/address/model/person/Nationality.class b/bin/main/seedu/address/model/person/Nationality.class new file mode 100644 index 00000000000..6ad26686fe1 Binary files /dev/null and b/bin/main/seedu/address/model/person/Nationality.class differ diff --git a/bin/main/seedu/address/model/person/Note.class b/bin/main/seedu/address/model/person/Note.class new file mode 100644 index 00000000000..e955a737633 Binary files /dev/null and b/bin/main/seedu/address/model/person/Note.class differ diff --git a/bin/main/seedu/address/model/person/Nric.class b/bin/main/seedu/address/model/person/Nric.class new file mode 100644 index 00000000000..68ef0158567 Binary files /dev/null and b/bin/main/seedu/address/model/person/Nric.class differ diff --git a/bin/main/seedu/address/model/person/Person.class b/bin/main/seedu/address/model/person/Person.class new file mode 100644 index 00000000000..7912d6fc3c1 Binary files /dev/null and b/bin/main/seedu/address/model/person/Person.class differ diff --git a/bin/main/seedu/address/model/person/Phone.class b/bin/main/seedu/address/model/person/Phone.class new file mode 100644 index 00000000000..2662e11ae4b Binary files /dev/null and b/bin/main/seedu/address/model/person/Phone.class differ diff --git a/bin/main/seedu/address/model/person/ProfileContainsKeywordsPredicate.class b/bin/main/seedu/address/model/person/ProfileContainsKeywordsPredicate.class new file mode 100644 index 00000000000..44828b34199 Binary files /dev/null and b/bin/main/seedu/address/model/person/ProfileContainsKeywordsPredicate.class differ diff --git a/bin/main/seedu/address/model/person/UniquePersonList.class b/bin/main/seedu/address/model/person/UniquePersonList.class new file mode 100644 index 00000000000..557f2d864b4 Binary files /dev/null and b/bin/main/seedu/address/model/person/UniquePersonList.class differ diff --git a/bin/main/seedu/address/model/person/exceptions/DuplicatePersonException.class b/bin/main/seedu/address/model/person/exceptions/DuplicatePersonException.class new file mode 100644 index 00000000000..156b44b7d17 Binary files /dev/null and b/bin/main/seedu/address/model/person/exceptions/DuplicatePersonException.class differ diff --git a/bin/main/seedu/address/model/person/exceptions/PersonNotFoundException.class b/bin/main/seedu/address/model/person/exceptions/PersonNotFoundException.class new file mode 100644 index 00000000000..75a1a0ee817 Binary files /dev/null and b/bin/main/seedu/address/model/person/exceptions/PersonNotFoundException.class differ diff --git a/bin/main/seedu/address/model/tag/Department.class b/bin/main/seedu/address/model/tag/Department.class new file mode 100644 index 00000000000..ab331b1cf99 Binary files /dev/null and b/bin/main/seedu/address/model/tag/Department.class differ diff --git a/bin/main/seedu/address/model/tag/EmploymentType.class b/bin/main/seedu/address/model/tag/EmploymentType.class new file mode 100644 index 00000000000..56477cacb59 Binary files /dev/null and b/bin/main/seedu/address/model/tag/EmploymentType.class differ diff --git a/bin/main/seedu/address/model/tag/JobTitle.class b/bin/main/seedu/address/model/tag/JobTitle.class new file mode 100644 index 00000000000..d534d900b13 Binary files /dev/null and b/bin/main/seedu/address/model/tag/JobTitle.class differ diff --git a/bin/main/seedu/address/model/tag/Tag.class b/bin/main/seedu/address/model/tag/Tag.class new file mode 100644 index 00000000000..c34a4af8e0a Binary files /dev/null and b/bin/main/seedu/address/model/tag/Tag.class differ diff --git a/bin/main/seedu/address/model/util/SampleDataUtil.class b/bin/main/seedu/address/model/util/SampleDataUtil.class new file mode 100644 index 00000000000..9dcb6545813 Binary files /dev/null and b/bin/main/seedu/address/model/util/SampleDataUtil.class differ diff --git a/bin/main/seedu/address/storage/AddressBookStorage.class b/bin/main/seedu/address/storage/AddressBookStorage.class new file mode 100644 index 00000000000..a530bb16c9e Binary files /dev/null and b/bin/main/seedu/address/storage/AddressBookStorage.class differ diff --git a/bin/main/seedu/address/storage/JsonAdaptedPerson.class b/bin/main/seedu/address/storage/JsonAdaptedPerson.class new file mode 100644 index 00000000000..50b2d46554f Binary files /dev/null and b/bin/main/seedu/address/storage/JsonAdaptedPerson.class differ diff --git a/bin/main/seedu/address/storage/JsonAdaptedTag.class b/bin/main/seedu/address/storage/JsonAdaptedTag.class new file mode 100644 index 00000000000..79fc304f44f Binary files /dev/null and b/bin/main/seedu/address/storage/JsonAdaptedTag.class differ diff --git a/bin/main/seedu/address/storage/JsonAddressBookStorage.class b/bin/main/seedu/address/storage/JsonAddressBookStorage.class new file mode 100644 index 00000000000..d2610e5a90d Binary files /dev/null and b/bin/main/seedu/address/storage/JsonAddressBookStorage.class differ diff --git a/bin/main/seedu/address/storage/JsonSerializableAddressBook.class b/bin/main/seedu/address/storage/JsonSerializableAddressBook.class new file mode 100644 index 00000000000..9fcfe5e9a1b Binary files /dev/null and b/bin/main/seedu/address/storage/JsonSerializableAddressBook.class differ diff --git a/bin/main/seedu/address/storage/JsonUserPrefsStorage.class b/bin/main/seedu/address/storage/JsonUserPrefsStorage.class new file mode 100644 index 00000000000..bd0d06847a0 Binary files /dev/null and b/bin/main/seedu/address/storage/JsonUserPrefsStorage.class differ diff --git a/bin/main/seedu/address/storage/Storage.class b/bin/main/seedu/address/storage/Storage.class new file mode 100644 index 00000000000..c48a2adfabd Binary files /dev/null and b/bin/main/seedu/address/storage/Storage.class differ diff --git a/bin/main/seedu/address/storage/StorageManager.class b/bin/main/seedu/address/storage/StorageManager.class new file mode 100644 index 00000000000..98652728013 Binary files /dev/null and b/bin/main/seedu/address/storage/StorageManager.class differ diff --git a/bin/main/seedu/address/storage/UserPrefsStorage.class b/bin/main/seedu/address/storage/UserPrefsStorage.class new file mode 100644 index 00000000000..4a3de2de21f Binary files /dev/null and b/bin/main/seedu/address/storage/UserPrefsStorage.class differ diff --git a/bin/main/seedu/address/ui/CommandBox$CommandExecutor.class b/bin/main/seedu/address/ui/CommandBox$CommandExecutor.class new file mode 100644 index 00000000000..46c12f4748d Binary files /dev/null and b/bin/main/seedu/address/ui/CommandBox$CommandExecutor.class differ diff --git a/bin/main/seedu/address/ui/CommandBox.class b/bin/main/seedu/address/ui/CommandBox.class new file mode 100644 index 00000000000..59b88853abc Binary files /dev/null and b/bin/main/seedu/address/ui/CommandBox.class differ diff --git a/bin/main/seedu/address/ui/HelpWindow.class b/bin/main/seedu/address/ui/HelpWindow.class new file mode 100644 index 00000000000..b64e971a239 Binary files /dev/null and b/bin/main/seedu/address/ui/HelpWindow.class differ diff --git a/bin/main/seedu/address/ui/HomePersonCard.class b/bin/main/seedu/address/ui/HomePersonCard.class new file mode 100644 index 00000000000..25e118e0222 Binary files /dev/null and b/bin/main/seedu/address/ui/HomePersonCard.class differ diff --git a/bin/main/seedu/address/ui/HomePersonCardPanel$PersonListViewCell.class b/bin/main/seedu/address/ui/HomePersonCardPanel$PersonListViewCell.class new file mode 100644 index 00000000000..5a6600eb4e7 Binary files /dev/null and b/bin/main/seedu/address/ui/HomePersonCardPanel$PersonListViewCell.class differ diff --git a/bin/main/seedu/address/ui/HomePersonCardPanel.class b/bin/main/seedu/address/ui/HomePersonCardPanel.class new file mode 100644 index 00000000000..997c99c84fb Binary files /dev/null and b/bin/main/seedu/address/ui/HomePersonCardPanel.class differ diff --git a/bin/main/seedu/address/ui/MainWindow.class b/bin/main/seedu/address/ui/MainWindow.class new file mode 100644 index 00000000000..9f46d41380e Binary files /dev/null and b/bin/main/seedu/address/ui/MainWindow.class differ diff --git a/bin/main/seedu/address/ui/PersonCard.class b/bin/main/seedu/address/ui/PersonCard.class new file mode 100644 index 00000000000..435f4e34ea1 Binary files /dev/null and b/bin/main/seedu/address/ui/PersonCard.class differ diff --git a/bin/main/seedu/address/ui/PersonListPanel$PersonListViewCell.class b/bin/main/seedu/address/ui/PersonListPanel$PersonListViewCell.class new file mode 100644 index 00000000000..7eeb1b8e977 Binary files /dev/null and b/bin/main/seedu/address/ui/PersonListPanel$PersonListViewCell.class differ diff --git a/bin/main/seedu/address/ui/PersonListPanel.class b/bin/main/seedu/address/ui/PersonListPanel.class new file mode 100644 index 00000000000..5cbe473e74c Binary files /dev/null and b/bin/main/seedu/address/ui/PersonListPanel.class differ diff --git a/bin/main/seedu/address/ui/PersonNoteCard.class b/bin/main/seedu/address/ui/PersonNoteCard.class new file mode 100644 index 00000000000..a8cb4d47db7 Binary files /dev/null and b/bin/main/seedu/address/ui/PersonNoteCard.class differ diff --git a/bin/main/seedu/address/ui/PersonNoteListPanel$PersonNoteListViewCell.class b/bin/main/seedu/address/ui/PersonNoteListPanel$PersonNoteListViewCell.class new file mode 100644 index 00000000000..dc9cc4ac126 Binary files /dev/null and b/bin/main/seedu/address/ui/PersonNoteListPanel$PersonNoteListViewCell.class differ diff --git a/bin/main/seedu/address/ui/PersonNoteListPanel.class b/bin/main/seedu/address/ui/PersonNoteListPanel.class new file mode 100644 index 00000000000..5e1d154aceb Binary files /dev/null and b/bin/main/seedu/address/ui/PersonNoteListPanel.class differ diff --git a/bin/main/seedu/address/ui/ResultDisplay.class b/bin/main/seedu/address/ui/ResultDisplay.class new file mode 100644 index 00000000000..6ef7ea561fc Binary files /dev/null and b/bin/main/seedu/address/ui/ResultDisplay.class differ diff --git a/bin/main/seedu/address/ui/StatusBarFooter.class b/bin/main/seedu/address/ui/StatusBarFooter.class new file mode 100644 index 00000000000..82fae56488a Binary files /dev/null and b/bin/main/seedu/address/ui/StatusBarFooter.class differ diff --git a/bin/main/seedu/address/ui/Ui.class b/bin/main/seedu/address/ui/Ui.class new file mode 100644 index 00000000000..0be5b266f15 Binary files /dev/null and b/bin/main/seedu/address/ui/Ui.class differ diff --git a/bin/main/seedu/address/ui/UiManager.class b/bin/main/seedu/address/ui/UiManager.class new file mode 100644 index 00000000000..ee392cddbb3 Binary files /dev/null and b/bin/main/seedu/address/ui/UiManager.class differ diff --git a/bin/main/seedu/address/ui/UiPart.class b/bin/main/seedu/address/ui/UiPart.class new file mode 100644 index 00000000000..94117a2e79d Binary files /dev/null and b/bin/main/seedu/address/ui/UiPart.class differ diff --git a/bin/main/view/CommandBox.fxml b/bin/main/view/CommandBox.fxml new file mode 100644 index 00000000000..124283a392e --- /dev/null +++ b/bin/main/view/CommandBox.fxml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bin/main/view/DarkTheme.css b/bin/main/view/DarkTheme.css new file mode 100644 index 00000000000..85b95ff669e --- /dev/null +++ b/bin/main/view/DarkTheme.css @@ -0,0 +1,398 @@ +.background { + -fx-background-color: derive(#1d1d1d, 20%); + background-color: #383838; /* Used in the default.html file */ +} + +.label { + -fx-font-size: 11pt; + -fx-font-family: "Segoe UI Semibold"; + -fx-text-fill: #555555; + -fx-opacity: 0.9; +} + +.label-bright { + -fx-font-size: 11pt; + -fx-font-family: "Segoe UI Semibold"; + -fx-text-fill: white; + -fx-opacity: 1; +} + +.label-header { + -fx-font-size: 32pt; + -fx-font-family: "Segoe UI Light"; + -fx-text-fill: white; + -fx-opacity: 1; +} + +.text-field { + -fx-font-size: 12pt; + -fx-font-family: "Segoe UI Semibold"; +} + +.tab-pane { + -fx-padding: 0 0 0 1; +} + +.tab-pane .tab-header-area { + -fx-padding: 0 0 0 0; + -fx-min-height: 0; + -fx-max-height: 0; +} + +.table-view { + -fx-base: #1d1d1d; + -fx-control-inner-background: #1d1d1d; + -fx-background-color: #1d1d1d; + -fx-table-cell-border-color: transparent; + -fx-table-header-border-color: transparent; + -fx-padding: 5; +} + +.table-view .column-header-background { + -fx-background-color: transparent; +} + +.table-view .column-header, .table-view .filler { + -fx-size: 35; + -fx-border-width: 0 0 1 0; + -fx-background-color: transparent; + -fx-border-color: + transparent + transparent + derive(-fx-base, 80%) + transparent; + -fx-border-insets: 0 10 1 0; +} + +.table-view .column-header .label { + -fx-font-size: 20pt; + -fx-font-family: "Segoe UI Light"; + -fx-text-fill: white; + -fx-alignment: center-left; + -fx-opacity: 1; +} + +.table-view:focused .table-row-cell:filled:focused:selected { + -fx-background-color: -fx-focus-color; +} + +.split-pane:horizontal .split-pane-divider { + -fx-background-color: derive(#1d1d1d, 20%); + -fx-border-color: transparent transparent transparent #4d4d4d; +} + +.split-pane { + -fx-border-radius: 1; + -fx-border-width: 1; + -fx-background-color: derive(#1d1d1d, 20%); +} + +.list-view { + -fx-background-insets: 0; + -fx-padding: 0; + -fx-background-color: derive(#1d1d1d, 20%); +} + +.list-cell { + -fx-label-padding: 0 0 0 0; + -fx-graphic-text-gap : 0; + -fx-padding: 0 0 0 0; +} + +.list-cell:filled:even { + -fx-background-color: #3c3e3f; +} + +.list-cell:filled:odd { + -fx-background-color: #515658; +} + +.list-cell:filled:selected { + -fx-background-color: #424d5f; +} + +.list-cell:filled:selected #cardPane { + -fx-border-color: #3e7b91; + -fx-border-width: 1; +} + +.list-cell .label { + -fx-text-fill: white; +} + +.cell_big_label { + -fx-font-family: "Segoe UI Semibold"; + -fx-font-size: 17px; + -fx-text-fill: #010504; + -fx-padding: 2; +} + +.cell_big_home_label { + -fx-font-family: "Segoe UI Light"; + -fx-font-size: 23px; + -fx-text-fill: #010504; + -fx-padding: 2; +} + +.cell_home_label { + -fx-font-family: "Segoe UI Semibold"; + -fx-font-size: 16px; + -fx-text-fill: #010504; +} + +.cell_small_label { + -fx-font-family: "Segoe UI"; + -fx-font-size: 13px; + -fx-text-fill: #010504; +} + +.stack-pane { + -fx-background-color: derive(#1d1d1d, 20%); +} + +.pane-with-border { + -fx-background-color: derive(#1d1d1d, 20%); + -fx-border-color: derive(#1d1d1d, 10%); + -fx-border-top-width: 1px; +} + +.status-bar { + -fx-background-color: derive(#1d1d1d, 30%); +} + +.result-display { + -fx-background-color: transparent; + -fx-font-family: "Segoe UI Light"; + -fx-font-size: 13pt; + -fx-text-fill: white; +} + +.result-display .label { + -fx-text-fill: black !important; +} + +.status-bar .label { + -fx-font-family: "Segoe UI Light"; + -fx-text-fill: white; + -fx-padding: 4px; + -fx-pref-height: 30px; +} + +.status-bar-with-border { + -fx-background-color: derive(#1d1d1d, 30%); + -fx-border-color: derive(#1d1d1d, 25%); + -fx-border-width: 1px; +} + +.status-bar-with-border .label { + -fx-text-fill: white; +} + +.grid-pane { + -fx-background-color: derive(#1d1d1d, 30%); + -fx-border-color: derive(#1d1d1d, 30%); + -fx-border-width: 1px; +} + +.grid-pane .stack-pane { + -fx-background-color: derive(#1d1d1d, 30%); +} + +.context-menu { + -fx-background-color: derive(#1d1d1d, 50%); +} + +.context-menu .label { + -fx-text-fill: white; +} + +.menu-bar { + -fx-background-color: derive(#1d1d1d, 20%); +} + +.menu-bar .label { + -fx-font-size: 14pt; + -fx-font-family: "Segoe UI Light"; + -fx-text-fill: white; + -fx-opacity: 0.9; +} + +.menu .left-container { + -fx-background-color: black; +} + +/* + * Metro style Push Button + * Author: Pedro Duque Vieira + * http://pixelduke.wordpress.com/2012/10/23/jmetro-windows-8-controls-on-java/ + */ +.button { + -fx-padding: 5 22 5 22; + -fx-border-color: #e2e2e2; + -fx-border-width: 2; + -fx-background-radius: 0; + -fx-background-color: #1d1d1d; + -fx-font-family: "Segoe UI", Helvetica, Arial, sans-serif; + -fx-font-size: 11pt; + -fx-text-fill: #d8d8d8; + -fx-background-insets: 0 0 0 0, 0, 1, 2; +} + +.button:hover { + -fx-background-color: #3a3a3a; +} + +.button:pressed, .button:default:hover:pressed { + -fx-background-color: white; + -fx-text-fill: #1d1d1d; +} + +.button:focused { + -fx-border-color: white, white; + -fx-border-width: 1, 1; + -fx-border-style: solid, segments(1, 1); + -fx-border-radius: 0, 0; + -fx-border-insets: 1 1 1 1, 0; +} + +.button:disabled, .button:default:disabled { + -fx-opacity: 0.4; + -fx-background-color: #1d1d1d; + -fx-text-fill: white; +} + +.button:default { + -fx-background-color: -fx-focus-color; + -fx-text-fill: #ffffff; +} + +.button:default:hover { + -fx-background-color: derive(-fx-focus-color, 30%); +} + +.dialog-pane { + -fx-background-color: #1d1d1d; +} + +.dialog-pane > *.button-bar > *.container { + -fx-background-color: #1d1d1d; +} + +.dialog-pane > *.label.content { + -fx-font-size: 14px; + -fx-font-weight: bold; + -fx-text-fill: white; +} + +.dialog-pane:header *.header-panel { + -fx-background-color: derive(#1d1d1d, 25%); +} + +.dialog-pane:header *.header-panel *.label { + -fx-font-size: 18px; + -fx-font-style: italic; + -fx-fill: white; + -fx-text-fill: white; +} + +.scroll-bar { + -fx-background-color: derive(#1d1d1d, 20%); +} + +.scroll-bar .thumb { + -fx-background-color: derive(#1d1d1d, 50%); + -fx-background-insets: 3; +} + +.scroll-bar .increment-button, .scroll-bar .decrement-button { + -fx-background-color: transparent; + -fx-padding: 0 0 0 0; +} + +.scroll-bar .increment-arrow, .scroll-bar .decrement-arrow { + -fx-shape: " "; +} + +.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow { + -fx-padding: 1 8 1 8; +} + +.scroll-bar:horizontal .increment-arrow, .scroll-bar:horizontal .decrement-arrow { + -fx-padding: 8 1 8 1; +} + +#cardPane { + -fx-background-color: transparent; + -fx-border-width: 0; +} + +#commandTypeLabel { + -fx-font-size: 11px; + -fx-text-fill: #F70D1A; +} + +#commandTextField { + -fx-background-color: transparent #383838 transparent #383838; + -fx-background-insets: 0; + -fx-border-color: #383838 #383838 #ffffff #383838; + -fx-border-insets: 0; + -fx-border-width: 1; + -fx-font-family: "Segoe UI Light"; + -fx-font-size: 13pt; + -fx-text-fill: white; +} + +#filterField, #personListPanel, #personWebpage { + -fx-effect: innershadow(gaussian, black, 10, 0, 0, 0); +} + +#resultDisplay .content { + -fx-background-color: transparent, #383838, transparent, #383838; + -fx-background-radius: 0; +} + +#tagBox { + -fx-alignment: center-left; +} + +#department { + -fx-hgap: 15; + -fx-vgap: 10; +} + +#department .label { + -fx-text-fill: white; + -fx-background-color: #73acd5; + -fx-padding: 1 3 1 3; + -fx-border-radius: 2; + -fx-background-radius: 2; + -fx-font-size: 13; +} + +#employmentType { + -fx-hgap: 15; + -fx-vgap: 10; +} + +#employmentType .label { + -fx-text-fill: white; + -fx-background-color: #467cd6; + -fx-padding: 1 3 1 3; + -fx-border-radius: 2; + -fx-background-radius: 2; + -fx-font-size: 13; +} + +#jobTitle { + -fx-hgap: 15; + -fx-vgap: 10; +} + +#jobTitle .label { + -fx-text-fill: white; + -fx-background-color: #8f8d8d; + -fx-padding: 1 3 1 3; + -fx-border-radius: 2; + -fx-background-radius: 2; + -fx-font-size: 13; +} diff --git a/bin/main/view/Extensions.css b/bin/main/view/Extensions.css new file mode 100644 index 00000000000..bfe82a85964 --- /dev/null +++ b/bin/main/view/Extensions.css @@ -0,0 +1,20 @@ + +.error { + -fx-text-fill: #d06651 !important; /* The error class should always override the default text-fill style */ +} + +.list-cell:empty { + /* Empty cells will not have alternating colours */ + -fx-background: #383838; +} + +.tag-selector { + -fx-border-width: 1; + -fx-border-color: white; + -fx-border-radius: 3; + -fx-background-radius: 3; +} + +.tooltip-text { + -fx-text-fill: white; +} diff --git a/bin/main/view/HelpWindow.css b/bin/main/view/HelpWindow.css new file mode 100644 index 00000000000..17e8a8722cd --- /dev/null +++ b/bin/main/view/HelpWindow.css @@ -0,0 +1,19 @@ +#copyButton, #helpMessage { + -fx-text-fill: white; +} + +#copyButton { + -fx-background-color: dimgray; +} + +#copyButton:hover { + -fx-background-color: gray; +} + +#copyButton:armed { + -fx-background-color: darkgray; +} + +#helpMessageContainer { + -fx-background-color: derive(#1d1d1d, 20%); +} diff --git a/bin/main/view/HelpWindow.fxml b/bin/main/view/HelpWindow.fxml new file mode 100644 index 00000000000..e01f330de33 --- /dev/null +++ b/bin/main/view/HelpWindow.fxml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/main/view/HomePersonCard.fxml b/bin/main/view/HomePersonCard.fxml new file mode 100644 index 00000000000..cf37e851682 --- /dev/null +++ b/bin/main/view/HomePersonCard.fxml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/main/view/HomePersonCardPanel.fxml b/bin/main/view/HomePersonCardPanel.fxml new file mode 100644 index 00000000000..181ce27cae0 --- /dev/null +++ b/bin/main/view/HomePersonCardPanel.fxml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/bin/main/view/MainWindow.fxml b/bin/main/view/MainWindow.fxml new file mode 100644 index 00000000000..0c1e97d82a5 --- /dev/null +++ b/bin/main/view/MainWindow.fxml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/main/view/PersonListCard.fxml b/bin/main/view/PersonListCard.fxml new file mode 100644 index 00000000000..0a81c8e7b72 --- /dev/null +++ b/bin/main/view/PersonListCard.fxml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/main/view/PersonListPanel.fxml b/bin/main/view/PersonListPanel.fxml new file mode 100644 index 00000000000..a1bb6bbace8 --- /dev/null +++ b/bin/main/view/PersonListPanel.fxml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/bin/main/view/PersonNoteCard.fxml b/bin/main/view/PersonNoteCard.fxml new file mode 100644 index 00000000000..36235a8d4c2 --- /dev/null +++ b/bin/main/view/PersonNoteCard.fxml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bin/main/view/PersonNoteListPanel.fxml b/bin/main/view/PersonNoteListPanel.fxml new file mode 100644 index 00000000000..ddf1525e1b5 --- /dev/null +++ b/bin/main/view/PersonNoteListPanel.fxml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/bin/main/view/ResultDisplay.fxml b/bin/main/view/ResultDisplay.fxml new file mode 100644 index 00000000000..01b691792a9 --- /dev/null +++ b/bin/main/view/ResultDisplay.fxml @@ -0,0 +1,9 @@ + + + + + + +