コード例 #1
0
 //
 // Invoked from the ChatRoomCallback implementation when a user sends a message
 // to the chat.
 //
 public void userSayEvent(long timestamp, String name, String message)
 {
     if (_chatView != null)
     {
         _chatView.appendMessage(ChatUtils.formatTimestamp(timestamp) + " - <" + name + "> " +
                                 ChatUtils.unstripHtml(message) + Environment.NewLine);
     }
 }