-
Notifications
You must be signed in to change notification settings - Fork 0
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 #102 from Team-40-IDATT2003/93-finish-dashboard-page
93 finish dashboard page
- Loading branch information
Showing
10 changed files
with
916 additions
and
119 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
31 changes: 30 additions & 1 deletion
31
src/main/java/edu/ntnu/idi/idatt2003/g40/mappe/view/widgets/dashboard/DashBoardActions.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 |
|---|---|---|
| @@ -1,7 +1,36 @@ | ||
| package edu.ntnu.idi.idatt2003.g40.mappe.view.widgets.dashboard; | ||
|
|
||
| /** | ||
| * Enum representing actions done in an instance of {@link DashBoardView}. | ||
| * */ | ||
| public enum DashBoardActions { | ||
| /** | ||
| * Buying shares. | ||
| * */ | ||
| BUY_SHARES, | ||
|
|
||
| /** | ||
| * Selling shares. | ||
| * */ | ||
| SELL_SHARES, | ||
| SELECT_STOCK; | ||
|
|
||
| /** | ||
| * Decreasing quantity of shares to buy/sell by five. | ||
| * */ | ||
| DECREASE_5, | ||
|
|
||
| /** | ||
| * Decreasing quantity of shares to buy/sell by one. | ||
| * */ | ||
| DECREASE_1, | ||
|
|
||
| /** | ||
| * Increasing quantity of shares to buy/sell by one. | ||
| * */ | ||
| INCREASE_1, | ||
|
|
||
| /** | ||
| * Increasing quantity of shares to buy/sell by five. | ||
| * */ | ||
| INCREASE_5; | ||
| } |
Oops, something went wrong.