Package xnap.plugin.nap.util

Examples of xnap.plugin.nap.util.Channel.messageReceived()


    public void messageReceived(String channelName, String nick, String message)
    {
    Channel c = (Channel)channels.get(channelName);
    if (c != null) {
      c.messageReceived(getUser(nick), message);
    }
    else {
      StringBuffer sb = new StringBuffer();
      sb.append(getHost());
      sb.append(" (");
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.