Guest User

Untitled

a guest
May 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. package viikko2;
  2.  
  3. // KOHDELUOKKA == ENTITY CLASS
  4. public class Oppilas {
  5. // ATTRIBUUTIT
  6. private String etunimi;
  7.  
  8. public String getEtunimi() {
  9. return etunimi;
  10. }
  11.  
  12. public void setEtunimi(String etunimi) {
  13. this.etunimi = etunimi;
  14. }
  15.  
  16. }
Add Comment
Please, Sign In to add comment