Package games.stendhal.client

Examples of games.stendhal.client.StendhalClient$MoveRPAction


  private ChatCache cache;
  public ChatTextController() {
    playerChatText.setFocusTraversalKeysEnabled(false);
    playerChatText.addKeyListener(new ChatTextKeyListener());
    addActionListener(new ParserHandler());
    StendhalClient client = StendhalClient.get();
    String logFile = null;
    if (client != null) {
      // StendhalClient is null during test runs
      logFile = stendhal.getGameFolder() + "chat/out-" + client.getCharacter() + ".log";
    }
    cache = new ChatCache(logFile);
    cache.loadChatCache();
    setCache(cache);
  }
View Full Code Here

TOP

Related Classes of games.stendhal.client.StendhalClient$MoveRPAction

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.