Пример #1
0
 private void handleFriendMsg(
     FriendChatPanel panel,
     MemberBean memberBean,
     String msg,
     FontStyle fontStyle,
     Date sendDate,
     Map<String, String> imgs)
     throws Exception {
   panel.insertFriendMsg(msg, fontStyle, sendDate, imgs);
   FlashWindowUtil.start(getMessageFrame());
   ChatRecord c =
       new ChatRecord(
           memberBean.getId(),
           memberBean.getRealName(),
           msg,
           sendDate,
           fontStyle,
           getSessionID(memberBean.getId()));
   Vovo.exeS("dataStore", "saveChatRecord", c);
 }