Examples of TopicChangedEvent


Examples of erki.talk.clients.erki.event.TopicChangedEvent

        if (line.toUpperCase().startsWith("NEWTOPIC ")) {
            String user = line.substring("NEWTOPIC ".length(), line
                    .indexOf(':'));
            String topic = line.substring(line.indexOf(':') + 2);
            Controller.getInstance().dispatchEvent(
                    new TopicChangedEvent(user, topic));
            return;
        }
       
        if (line.toUpperCase().startsWith("NICKINUSE ")) {
            String nick = line.substring("NICKINUSE ".length());
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.