Example #1
0
File: API.java Project: OdiumxXx/Fe
 public Account getAccount(String name) {
   return plugin.getFeDatabase().getAccount(name.toLowerCase());
 }
Example #2
0
File: API.java Project: OdiumxXx/Fe
 public boolean accountExists(String name) {
   return plugin.getFeDatabase().accountExists(name.toLowerCase());
 }
Example #3
0
File: API.java Project: OdiumxXx/Fe
 public void removeAccount(String name) {
   plugin.getFeDatabase().removeAccount(name.toLowerCase());
 }
Example #4
0
File: API.java Project: OdiumxXx/Fe
 public List<Account> getAccounts() {
   return plugin.getFeDatabase().getAccounts();
 }
Example #5
0
File: API.java Project: OdiumxXx/Fe
 public List<Account> getTopAccounts(int size) {
   return plugin.getFeDatabase().getTopAccounts(size);
 }
Example #6
0
File: API.java Project: OdiumxXx/Fe
 public List<Account> getTopAccounts() {
   return plugin.getFeDatabase().getTopAccounts(plugin.getConfig().getInt("topsize"));
 }
Example #7
0
File: API.java Project: OdiumxXx/Fe
 public void clean() {
   plugin.getFeDatabase().clean();
 }