Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import java.io.Serializable;
  2. public class Calza implements Serializable {
  3.  
  4. private String id;
  5. private String tipo;
  6. private char carbone;
  7. private String citta;
  8. private String via;
  9. private String messaggio;
  10.  
  11. public Calza(){
  12. this.id="L";
  13. this.tipo="L";
  14. this.carbone="L";
  15. this.citta="L";
  16. this.via="L";
  17. this.messaggio="L";
  18. }
  19.  
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement