Skip to content
Snippets Groups Projects
Commit b24d8c3c authored by Harry Linrui XU's avatar Harry Linrui XU
Browse files

"Delete FinanceDialog class"

parent 664d6ce0
No related branches found
No related tags found
8 merge requests!43Merging frontend-testing into master,!38"Made progressbar dynamic in accordance to spending. Added balance field....,!37Made the sub progress bars respond to changes in expense,!32Added input validation to add dialog boxes.,!30Redesigned scenes,!29Redesigned scenes,!28Redesigned scenes,!26Redesigned Main menu and expense/income windows
......@@ -18,19 +18,19 @@ public interface FinanceController {
* Method for handling the adding of new entries in the tableview.
* @param event A button click on the add button.
*/
void handleAddBtn(ActionEvent event);
void handleAddBtn(javafx.event.ActionEvent event);
/**
* Method for handling the editing of a chosen entry in the tableview.
* @param event A button click on the edit button.
*/
void handleEditBtn(ActionEvent event);
void handleEditBtn(javafx.event.ActionEvent event);
/**
* Deletes an entry from the tableview, if an entry has been selected. The method brings up a popup window, asking for confirmation for deleting the entry.
* @param event A button click on the delete button
*/
void handleDeleteBtn(ActionEvent event);
void handleDeleteBtn(javafx.event.ActionEvent event);
/**
* Method for synching the register with the tableview. The observable list to which the tableview is set, is being refilled with all the entries
......
package no.ntnu.idatt1002.demo.view;public class FinanceDialog {
}
......@@ -3,13 +3,3 @@ amount=100.0
isRecurring=Not recurring
category=FOOD
date=2023-03-27
amount=100.0
isRecurring=Recurring
category=OTHER
date=2023-03-30
amount=200.0
isRecurring=Not recurring
category=BOOKS
date=2023-03-27
amount=950.0
amount=110.0
isRecurring=Recurring
category=SALARY
date=2023-03-31
amount=100.0
isRecurring=Not recurring
category=GIFT
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment