Package games.stendhal.server.util

Examples of games.stendhal.server.util.WikipediaAccess


                    // extract the title
                    int pos = text.indexOf(" ");
                    if (pos > -1) {
                      String title = text.substring(pos + 1).trim();
 
                      final WikipediaAccess access = new WikipediaAccess(title);
                      final Thread thread = new Thread(access);
                      thread.setPriority(Thread.MIN_PRIORITY);
                      thread.setDaemon(true);
                      thread.start();
                      SingletonRepository.getTurnNotifier().notifyInTurns(10, new WikipediaWaiter((SpeakerNPC) npc.getEntity(), access));
View Full Code Here

TOP

Related Classes of games.stendhal.server.util.WikipediaAccess

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.