Package chatroom.connection

Examples of chatroom.connection.ClientConnection.sendGroupMessage()


        //System.err.println(msg);
        ClientConnection connection = ChatroomClient.getClient().getConnection();
        if (chatPane.isPrivate()) {
            connection.sendPrivateMessage(getName(), ChatroomClient.getClient().getUserName(), chatPane.getRecipient(), msg);
        } else {
            connection.sendGroupMessage(getName(), ChatroomClient.getClient().getUserName(), msg);
        }
        chatPane.clearAll();
    }

    public RoomPane(String roomname, boolean isPrivateRoom, boolean isLobbyRoom) {
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.