Package games.stendhal.server.core.config.zone

Examples of games.stendhal.server.core.config.zone.SetupDescriptor


     * Setup elements
     */
    for (final Element child : XMLUtil.getElements(element)) {
      final String tag = child.getTagName();

      SetupDescriptor setupDesc = null;

      if (tag.equals("configurator")) {
        setupDesc = configuratorReader.read(child);
      } else if (tag.equals("implementation")) {
        desc.setImplementation(child.getAttribute("class-name"));
View Full Code Here

TOP

Related Classes of games.stendhal.server.core.config.zone.SetupDescriptor

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.