document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //classe clientes herda todos os atributos da classe pessoa
  2. public class Clientes extends Pessoas(){
  3.     public static String telefone;
  4.  
  5.     public setTelefone(String telefone){
  6.         this.telefone = telefone;
  7.     }
  8.  
  9.     public getTelefone(){
  10.         return this.telefone;
  11.     }
  12. }
');