forked from nus-cs2103-AY2223S2/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 #208 from shirsho-12/uml-diagrams
Quality of Life refactors
- Loading branch information
Showing
67 changed files
with
834 additions
and
222 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"categories" : [ { | ||
"categoryName" : "food", | ||
"summary" : "For food" | ||
}, { | ||
"categoryName" : "entertainment", | ||
"summary" : "For entertainment" | ||
}, { | ||
"categoryName" : "transportation", | ||
"summary" : "For bus, car, train" | ||
}, { | ||
"categoryName" : "shopping", | ||
"summary" : "" | ||
}, { | ||
"categoryName" : "housing", | ||
"summary" : "" | ||
} ], | ||
"expenses" : [ { | ||
"name" : "Meal at JE", | ||
"amount" : "4.5", | ||
"date" : "2023-04-04", | ||
"category" : { | ||
"categoryName" : "food", | ||
"summary" : "For food" | ||
} | ||
}, { | ||
"name" : "Groceries", | ||
"amount" : "56.3", | ||
"date" : "2023-03-25", | ||
"category" : { | ||
"categoryName" : "food", | ||
"summary" : "For food" | ||
} | ||
}, { | ||
"name" : "Shoes", | ||
"amount" : "75.0", | ||
"date" : "2023-03-20", | ||
"category" : { | ||
"categoryName" : "shopping", | ||
"summary" : "" | ||
} | ||
}, { | ||
"name" : "Movie ticket", | ||
"amount" : "12.99", | ||
"date" : "2023-03-15", | ||
"category" : { | ||
"categoryName" : "entertainment", | ||
"summary" : "For entertainment" | ||
} | ||
}, { | ||
"name" : "MRT fare", | ||
"amount" : "45.8", | ||
"date" : "2023-03-10", | ||
"category" : { | ||
"categoryName" : "transportation", | ||
"summary" : "For bus, car, train" | ||
} | ||
} ], | ||
"budget" : { | ||
"amount" : "0.0" | ||
}, | ||
"recurringGenerators" : [ ] | ||
} |
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
9 changes: 9 additions & 0 deletions
9
src/main/java/seedu/address/logic/commands/add/AddCommand.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,9 @@ | ||
package seedu.address.logic.commands.add; | ||
|
||
import seedu.address.logic.commands.Command; | ||
|
||
/** | ||
* Represents an add command with hidden internal logic and the ability to be | ||
* executed. | ||
*/ | ||
public interface AddCommand extends Command {} |
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
9 changes: 9 additions & 0 deletions
9
src/main/java/seedu/address/logic/commands/delete/DeleteCommand.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,9 @@ | ||
package seedu.address.logic.commands.delete; | ||
|
||
import seedu.address.logic.commands.Command; | ||
|
||
/** | ||
* Represents a delete command with hidden internal logic and the ability to be executed. | ||
*/ | ||
public interface DeleteCommand extends Command { | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/main/java/seedu/address/logic/commands/edit/EditCommand.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,11 @@ | ||
package seedu.address.logic.commands.edit; | ||
|
||
import seedu.address.logic.commands.Command; | ||
|
||
/** | ||
* Represents a edit command with hidden internal logic and the ability to be | ||
* executed. | ||
*/ | ||
public interface EditCommand extends Command { | ||
|
||
} |
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.