1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-26 10:52:16 -05:00

ChannelListener now uses conversations instead of channels

This commit is contained in:
Sebastian Kaspari 2010-03-10 21:06:42 +01:00
parent 9259ae2afd
commit 9e94638f14

View File

@ -22,7 +22,7 @@ package org.yaaic.listener;
public interface ChannelListener public interface ChannelListener
{ {
public void onChannelMessage(String target); public void onConversationMessage(String target);
public void onNewChannel(String target); public void onNewConversation(String target);
public void onRemoveChannel(String target); public void onRemoveConversation(String target);
} }