-
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
PawelSapula
committed
May 24, 2026
1 parent
a4a82c9
commit dfbe91f
Showing
1 changed file
with
0 additions
and
14 deletions.
There are no files selected for viewing
14 changes: 0 additions & 14 deletions
14
src/main/java/edu/ntnu/idi/idatt/view/primary/finish/FinishModel.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,21 +1,7 @@ | ||
| package edu.ntnu.idi.idatt.view.primary.finish; | ||
|
|
||
| import java.math.BigDecimal; | ||
|
|
||
| import edu.ntnu.idi.idatt.view.components.Model; | ||
| import javafx.beans.property.SimpleObjectProperty; | ||
|
|
||
| public class FinishModel implements Model { | ||
|
|
||
| private final SimpleObjectProperty<BigDecimal> profitProperty = new SimpleObjectProperty<>(); | ||
| private final SimpleObjectProperty<BigDecimal> roiProperty = new SimpleObjectProperty<>(); | ||
|
|
||
| public SimpleObjectProperty<BigDecimal> getProfitProperty() { | ||
| return profitProperty; | ||
| } | ||
|
|
||
| public SimpleObjectProperty<BigDecimal> getRoiProperty() { | ||
| return roiProperty; | ||
| } | ||
|
|
||
| } |