Guest User

Untitled

a guest
Apr 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Employee{
  2. private String name;
  3.  
  4. public void setName(String name){
  5. this.name = name;
  6. }
  7.  
  8. public String getName()
  9. {
  10. return this.name;
  11. }
  12. }
Add Comment
Please, Sign In to add comment