Package client.ChatFrame

Examples of client.ChatFrame.MassMessageSender


        commandsPane = new JPanel();
        send = new JButton("Enviar");
        send.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                if ( ((Host)hostComboBox.getSelectedItem()).getHostName().equalsIgnoreCase(Constants.MASS_MESSAGE_TEXT))
                    new Thread(new MassMessageSender()).start();
                else
                    enviarImagen(((Host)hostComboBox.getSelectedItem()).getHostName(), ((Host)hostComboBox.getSelectedItem()).getHostIP(), false);
            }
        });
       
View Full Code Here

TOP

Related Classes of client.ChatFrame.MassMessageSender

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.