Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
MyBancoCredito - Utente.java

Utente.java

Caricato da: Bonny
Scarica il programma completo

  1. package jcredito;
  2.  
  3. public class Utente {
  4.  
  5.     private String NK;
  6.     private String PSW;
  7.     private long C;
  8.  
  9.     public Utente(String nome, String psw, long credito) {
  10.  
  11.         this.NK = nome;
  12.         this.PSW = psw;
  13.         this.C = credito;
  14.  
  15.     }
  16.  
  17.     public Utente(String nome, String psw) {
  18.  
  19.         this.NK = nome;
  20.         this.PSW = psw;
  21.  
  22.     }
  23.  
  24.     public String getNk() {
  25.         return this.NK;
  26.     }
  27.  
  28.     public String getPsw() {
  29.         return this.PSW;
  30.     }
  31.  
  32.     public long getCr() {
  33.         return this.C;
  34.     }
  35. }