Package uk.co.jacekk.bukkit.baseplugin.storage

Examples of uk.co.jacekk.bukkit.baseplugin.storage.DataStore


 
  public void onEnable(){
    super.onEnable(true);
   
    this.config = new PluginConfig(new File(this.baseDirPath + File.separator + "config.yml"), Config.class, this.log);
    this.aliasStore = new DataStore(new File(this.baseDirPath + File.separator + "aliases.txt"), true);
    this.aliasStore.load();
   
    this.ircAliases = new HashMap<String, String>(this.aliasStore.size());
    this.gameAliases = new HashMap<String, String>(this.aliasStore.size());
   
View Full Code Here

TOP

Related Classes of uk.co.jacekk.bukkit.baseplugin.storage.DataStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.