Package model

Examples of model.Cliente


        }
    }

    public static boolean conectar() {
        usuario = jTFUsuario.getText();
        cliente = new Cliente(usuario);
        cliente.getOut().println(usuario);              
        new ClienteRunMensagem(cliente).start();
        jBConectar.setEnabled(false);
        jBDesconectar.setEnabled(true);
        jBConversa.setEnabled(true);
View Full Code Here

TOP

Related Classes of model.Cliente

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.