Package chatroom.audio.manager

Examples of chatroom.audio.manager.AudioManager


    }

    @Override
    public void openAudio(int port) {
        try {
            AudioManager am = AudioManager.getManager(serverIP, port);
            if (am == null) {
                JOptionPane.showMessageDialog(this, "You're already in a VoIP.", "Audio error", JOptionPane.ERROR_MESSAGE);
            } else {
                am.setVisible(true);
            }
        } catch (IOException ex) {
            Logger.getLogger(ChatroomClient.class.getName()).log(Level.SEVERE, null, ex);
        } catch (LineUnavailableException ex) {
            Logger.getLogger(ChatroomClient.class.getName()).log(Level.SEVERE, null, ex);
View Full Code Here

TOP

Related Classes of chatroom.audio.manager.AudioManager

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.