-
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.
- Loading branch information
Solveig Natvig
committed
Mar 22, 2026
1 parent
cbf8f06
commit 95653ae
Showing
1 changed file
with
22 additions
and
0 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,22 @@ | ||
| import java.math.BigDecimal; | ||
|
|
||
| public class Purchase extends Transaction { | ||
| public Purchase(Share share, int week) { | ||
| super(share, week, new PurchaseCalculator(share)); | ||
| } | ||
|
|
||
| @Override | ||
| public void commit(Player player) { | ||
| BigDecimal price = this.getShare().getPurchasePrice(); | ||
|
|
||
| if (isCommitted() || (player.getMoney().compareTo(price) < 0)) { | ||
| return; | ||
| } | ||
|
|
||
| player.withdrawMoney(price); | ||
| player.getPortfolio().addShare(getShare()); | ||
| player.getTransactionArchive().add(this); | ||
|
|
||
| this.committed = true; | ||
| } | ||
| } |