Package erki.talk.clients.erki.event

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

Related Classes of erki.talk.clients.erki.event.TopicChangedEvent

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.