Package voxo.common.packets

Examples of voxo.common.packets.ChatPacket


  @Override
  public void actionPerformed(ActionEvent e) {
   
   
    ChatPacket p = new ChatPacket(mainView.getMe().getUsername(), chatWindow.getTextField().getText());
   
    if (chatWindow.getU().getOnline()){
   
    new SendChatAction(mainView.getC(), chatWindow.getU().getIp() , p);
   
View Full Code Here


        break;
      case SERVER_UpdateContact:
        handleContactUpdated(((ContactListPacket) (p.getO())));
        break;
      case CLIENT_SendChat:
        ChatPacket cP = (ChatPacket) p.getO();
        handleChatMsgReceived(cP);
        break;
      case CLIENT_AskVoice:
        handleVoiceRequest((VoiceConnexionPacket) p.getO());
        break;
View Full Code Here

TOP

Related Classes of voxo.common.packets.ChatPacket

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.