Package irc4j.event

Examples of irc4j.event.MessageEvent


            for (int i = 3; i<raw.size(); i++) {
                builder.append(raw.get(i)).append(" ");
            }
            System.out.println("NOTICE FROM " + raw.get(0) + ": " + builder.toString());
        } else if (raw.get(1).equals("PRIVMSG")) {
            MessageEvent event = new MessageEvent(this, raw.get(0), raw.get(2), raw.get(3));
            listener.onMessageEvent(event);
        }
        if (connectionReady || !hasConnected) {
            listener.onConnectEvent(new ConnectEvent(this));
            this.connectionReady = false;
View Full Code Here

TOP

Related Classes of irc4j.event.MessageEvent

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.