forked from nus-cs2103-AY2324S1/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 #130 from wesho1107/ui-tabs
Update UI with TabPane and features
- Loading branch information
Showing
70 changed files
with
908 additions
and
200 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
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
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
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
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
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
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
38 changes: 38 additions & 0 deletions
38
src/main/java/seedu/address/logic/commands/CommandType.java
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package seedu.address.logic.commands; | ||
/** | ||
* Enum representing the type of commands. | ||
*/ | ||
public enum CommandType { | ||
/** | ||
* Command type for graphical display | ||
*/ | ||
ADD, | ||
ADD_TASK, | ||
ADD_TO_CONSULT, | ||
CLEAR, | ||
CREATE_CONSULT, | ||
CREATE_SESSION, | ||
DELETE, | ||
DELETE_COMMENT, | ||
DELETE_CONSULT, | ||
DELETE_GRADE, | ||
DELETE_SESSION, | ||
DELETE_TASK, | ||
EDIT, | ||
EDIT_COMMENT, | ||
EDIT_GRADE, | ||
EDIT_GRADED_TEST, | ||
EXIT, | ||
FIND, | ||
HELP, | ||
LIST, | ||
REMOVE_FROM_CONSULT, | ||
TAB, | ||
TAKE_ATTENDANCE, | ||
UPDATE_SESSION_REMARK, | ||
UPDATE_TASK_PROGRESS, | ||
VIEW_ALL_ASSIGNMENTS, | ||
VIEW_ASSIGNMENTS, | ||
VIEW_ATTENDANCE, | ||
VIEW_TASKS; | ||
} |
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
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
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
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
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
Oops, something went wrong.