public interface BankSettings
| Modifier and Type | Method and Description |
|---|---|
int |
getAccountsLimit() |
double |
getEnterCost() |
java.lang.String |
getEnterPermission() |
java.io.File |
getFile() |
java.lang.String |
getName() |
BankIO |
getSave() |
boolean |
isLogTransactions() |
void |
setAccountLimit(int value)
Change the Limit of Acounts for this Bank.
|
void |
setEnterCost(double cost)
Change the Cost for Enetring a Bank.
|
void |
setEnterPermission(java.lang.String value)
Change the Enter Permission for this Bank.
|
void |
setLogTransactions(boolean value)
Change the Behaviour of Transactions' Logging.
|
java.lang.String getName()
java.io.File getFile()
BankIO getSave()
int getAccountsLimit()
setAccountLimit(int)void setAccountLimit(int value)
value - the new Limit.getAccountsLimit()java.lang.String getEnterPermission()
setEnterPermission(String)void setEnterPermission(java.lang.String value)
value - the new Permission, empty if no permissiongetEnterPermission()boolean isLogTransactions()
setLogTransactions(boolean)void setLogTransactions(boolean value)
value - true if you want to log, else false.isLogTransactions()double getEnterCost()
setEnterCost(double)void setEnterCost(double cost)
cost - the new Cost.getEnterCost()