Package voxo.client.actions

Examples of voxo.client.actions.ConfirmVoiceAction


    dialog.setVisible(true);

    // if yes, contact user
    int value = ((Integer) optionPane.getValue()).intValue();
    if (value == JOptionPane.YES_OPTION) {
      new ConfirmVoiceAction(c, clp.getUserIp(), new VoiceConnexionPacket(me.getUsername(), me.getIp(), clp.getUsername()));
      getContactListHash().get(clp.getUsername()).swapChat(true);
    } else {
      // if no, ignore demands
      new CancelVoiceAction(c, clp.getUserIp(), new VoiceConnexionPacket(me.getUsername(), me.getIp(), clp.getUsername()));
      getContactListHash().get(clp.getUsername()).swapChat(false);
View Full Code Here

TOP

Related Classes of voxo.client.actions.ConfirmVoiceAction

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.