Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package com.suteu;
  7.  
  8. import java.sql.Date;
  9.  
  10. /**
  11. *
  12. * @author studente
  13. */
  14. public class Circolare {
  15.  
  16.  
  17.  
  18. public int id,categoria;
  19. public String titolo,descrizione,percorso_file;
  20. public Date data;
  21.  
  22. public Circolare(int id, int categoria ,String titolo, String descrizione, String percorso_file, Date data)
  23. {
  24. this.id=id;
  25. this.categoria=categoria;
  26. this.titolo=titolo;
  27. this.descrizione=descrizione;
  28. this.percorso_file=percorso_file;
  29. this.data=data;
  30. }
  31.  
  32. public int GetID(){return id;}
  33. public int GetCategoria(){return categoria;}
  34. public String GetTitolo(){return titolo;}
  35.  
  36. public String GetDescrizione(){return descrizione;}
  37. public String GetPercorsoFile(){return percorso_file;}
  38.  
  39. public Date GetData(){return data;}
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement