public interface BankIO
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Close the IO Save for the Bank
|
void |
deleteBankSave() |
java.util.List<BankAccount> |
loadAccounts(Bank instance) |
java.util.Set<org.bukkit.block.Chest> |
loadChests() |
java.util.Set<Bank> |
loadFrontageBanks()
This Method is used like static
|
void |
log(Transaction transaction)
Log the Transaction to the Save.
|
void |
save(java.util.Set<org.bukkit.block.Chest> chests,
java.util.List<BankAccount> accounts) |
void |
saveFrontage(org.bukkit.World world,
java.util.Set<org.bukkit.block.Chest> chests)
Save as if the Bank were a Frontage Bank.
|
java.util.Set<org.bukkit.block.Chest> loadChests()
java.util.List<BankAccount> loadAccounts(Bank instance)
instance - Instance of the Bank to create Accounts.void save(java.util.Set<org.bukkit.block.Chest> chests,
java.util.List<BankAccount> accounts)
void deleteBankSave()
void saveFrontage(org.bukkit.World world,
java.util.Set<org.bukkit.block.Chest> chests)
world - the World were is the Frontage Bank.chests - the Chests of this Frontage Bank.java.util.Set<Bank> loadFrontageBanks()
void log(Transaction transaction)
transaction - the Transaction to logvoid close()