47484950515253
public boolean hasBank(String bank) { return false; } public boolean hasAccount(String name) { return (new Accounts()).exists(name); }
58596061626364
public boolean createAccount(String name) { if(hasAccount(name)) return false; return (new Accounts()).create(name); }
65666768697071
public boolean createAccount(String name, double balance) { if(hasAccount(name)) return false; return (new Accounts()).create(name, balance); }
69707172737475
return (new Accounts()).create(name, balance); } public MethodAccount getAccount(String name) { return new iCoAccount((new Accounts()).get(name)); }
35363738394041
public iConomy8Balance (ShowCaseStandalone scs, iConomy iconomy) { // super (scs); this.iconomy = iconomy; this.scs = scs; accounts = new Accounts (); }