Package org.jfairy.data

Examples of org.jfairy.data.DataMaster


  private static final String DATA_FILE_PREFIX = "jfairy";

  public static Fairy createFairy(Locale locale, String filePrefix, Random random) {
    Injector injector = Guice.createInjector(new FairyModule(random));

    DataMaster dataMaster = injector.getInstance(DataMaster.class);
    try {
      dataMaster.readResources(filePrefix + ".yml");
      dataMaster.readResources(filePrefix + "_" + locale.getLanguage() + ".yml");
    } catch (IOException e) {
      throw new IllegalStateException(e);
    }

    FairyFactory instance = injector.getInstance(FairyFactory.class);
View Full Code Here

TOP

Related Classes of org.jfairy.data.DataMaster

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.