Examples of SetupDescriptor


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
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.