Examples of NickChangeEvent


Examples of erki.talk.clients.erki.event.NickChangeEvent

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