Guest User

Untitled

a guest
Mar 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // save as Employee.java
  2. package encap.example
  3. public class Employee {
  4. private int age;
  5. public int getAge(){
  6. return age;
  7. }
  8. public void setAge(int age){
  9. if(age > 0)
  10. this.age = age;
  11. }
  12. }
Add Comment
Please, Sign In to add comment