Package games.stendhal.common.messages

Examples of games.stendhal.common.messages.SupportMessageTemplatesFactory


    return true;
  }

  private List<String> buildHelpSupportResponse() {
    List<String> lines = new LinkedList<String>();
    Map<String, String> templates = new SupportMessageTemplatesFactory().getTemplates();
    for (Entry<String, String> template : templates.entrySet()) {
      lines.add(template.getKey() + " - " + template.getValue());
    }
    return lines;
  }
View Full Code Here

TOP

Related Classes of games.stendhal.common.messages.SupportMessageTemplatesFactory

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.