Package org.cspoker.server.embedded.chat.room

Examples of org.cspoker.server.embedded.chat.room.ChatRoom


    ((ChatContextImpl) chatContext).setListener(chatListener);
    return getChatContext();
  }
 
  public ChatContext getTableChatContext(ChatListener chatListener, TableId tableId) {
    ChatRoom table = ChatServer.getInstance().getTableChatRoom(tableId);
    if (table == null)
      throw new IllegalArgumentException("No such table id!");
    ((ChatContextImpl) chatContext).changeChatRoom(table);
    ((ChatContextImpl) chatContext).setListener(chatListener);
    return getChatContext();
View Full Code Here

TOP

Related Classes of org.cspoker.server.embedded.chat.room.ChatRoom

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.