Advertisement
Keodedad

Untitled

Oct 15th, 2020
2,006
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.17 KB | None | 0 0
  1. package exo1;
  2.  
  3. public class Client {
  4.  
  5.     private int idClient;
  6.     private String nom;
  7.     private String prenom;
  8.     private String societe;
  9.     private boolean actif;
  10.  
  11.     static int cpt = 0;
  12.  
  13.  
  14.     public int getIdClient() {
  15.         return idClient;
  16.     }
  17.  
  18.     public String getNom() {
  19.         return nom;
  20.     }
  21.  
  22.     public String getPrenom() {
  23.         return prenom;
  24.     }
  25.  
  26.     public String getSociete() {
  27.         return societe;
  28.     }
  29.  
  30.     public boolean isActif() {
  31.         return actif;
  32.     }
  33.  
  34.     public void setNom(String nom) {
  35.         this.nom = nom;
  36.     }
  37.  
  38.     public void setPrenom(String prenom) {
  39.         this.prenom = prenom;
  40.     }
  41.  
  42.     public void setSociete(String societe) {
  43.         this.societe = societe;
  44.     }
  45.  
  46.     public void setActif(boolean actif) {
  47.         this.actif = actif;
  48.     }
  49.  
  50.     public Client(String nom) {
  51.         this.idClient = cpt++;
  52.         this.nom = nom;
  53.     }
  54.  
  55.     public Client(String nom,
  56.                   String prenom, String societe,
  57.                   boolean actif) {
  58.         this(nom);
  59.         this.prenom = prenom;
  60.         this.societe = societe;
  61.         this.actif = actif;
  62.  
  63.     }
  64. }
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement