-
Notifications
You must be signed in to change notification settings - Fork 1
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 #47 from jeffreybakker/extension_5
Extension 5
- Loading branch information
Showing
24 changed files
with
761 additions
and
150 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
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
24 changes: 24 additions & 0 deletions
24
src/main/java/honours/ing/banq/account/bean/OverdraftBean.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,24 @@ | ||
package honours.ing.banq.account.bean; | ||
|
||
import java.math.BigDecimal; | ||
|
||
/** | ||
* @author jeffrey | ||
* @since 5-8-17 | ||
*/ | ||
public class OverdraftBean { | ||
|
||
private double overdraftLimit; | ||
|
||
public OverdraftBean(BigDecimal overdraftLimit) { | ||
this.overdraftLimit = overdraftLimit.doubleValue(); | ||
} | ||
|
||
public double getOverdraftLimit() { | ||
return overdraftLimit; | ||
} | ||
|
||
public void setOverdraftLimit(double overdraftLimit) { | ||
this.overdraftLimit = overdraftLimit; | ||
} | ||
} |
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
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,12 @@ | ||
package honours.ing.banq.event; | ||
|
||
/** | ||
* @author jeffrey | ||
* @since 5-8-17 | ||
*/ | ||
public interface Event { | ||
|
||
void execute(long time); | ||
long nextIteration(long lastIteration); | ||
|
||
} |
Oops, something went wrong.