document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class JavaAberto(){
  2.     public static void main(String[] args) {  
  3.  
  4.         //cria objeto cliente
  5.             Clientes objCliente = new Clientes();
  6.  
  7.         //altera o nome do cliente
  8.             objCliente.setNome("JavaMan");
  9.  
  10.         //mostra o nome do cliente
  11.         JOptionPane.showMessageDialog(null,objCliente.getNome);  
  12.     }  
  13. }
');