Advertisement
Guest User

Untitled

a guest
Feb 18th, 2022
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.96 KB | None | 0 0
  1. package com;
  2.  
  3. public class Utente {
  4.  
  5.     private String codiceFiscale;
  6.     private String nome;
  7.     private String cognome;
  8.     private String cittàDiResidenza;
  9.     private String numeroDiTelefono;
  10.    
  11.     public String getCodiceFiscale() {
  12.         return codiceFiscale;
  13.     }
  14.     public void setCodiceFiscale(String codiceFiscale) {
  15.         this.codiceFiscale = codiceFiscale;
  16.     }
  17.     public String getNome() {
  18.         return nome;
  19.     }
  20.     public void setNome(String nome) {
  21.         this.nome = nome;
  22.     }
  23.     public String getCognome() {
  24.         return cognome;
  25.     }
  26.     public void setCognome(String cognome) {
  27.         this.cognome = cognome;
  28.     }
  29.     public String getCittàDiResidenza() {
  30.         return cittàDiResidenza;
  31.     }
  32.     public void setCittàDiResidenza(String cittàDiResidenza) {
  33.         this.cittàDiResidenza = cittàDiResidenza;
  34.     }
  35.     public String getNumeroDiTelefono() {
  36.         return numeroDiTelefono;
  37.     }
  38.     public void setNumeroDiTelefono(String numeroDiTelefono) {
  39.         this.numeroDiTelefono = numeroDiTelefono;
  40.     }
  41.    
  42.    
  43.    
  44.    
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement