Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public class Cliente {
  2.     // suas variaveis aqui
  3.    
  4.     // metodos
  5.     public void Ativar() {
  6.         // ativa o cliente
  7.         this.ativo = 'S'; // não sei qual caractere vc ta usando pra ativado/desativado, então imagino que seja 'S' ou 'N'
  8.     }
  9.     public void Desativar() {
  10.         // desativa o cliente
  11.         this.ativo = 'N';
  12.     }
  13.  
  14.     // propriedades
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement