Package games.stendhal.server.core.config.factory

Examples of games.stendhal.server.core.config.factory.ConfigurableFactory.create()


    final ConfigurableFactory factory = ConfigurableFactoryHelper.getFactory(className);
    if (factory == null) {
      return null;
    }

    final Object obj = factory.create(new ConfigurableFactoryContext(parameters));

    if (!(obj instanceof Entity)) {
      throw new IllegalArgumentException(obj.getClass().getName()
          + " is not an instance of Entity");
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.