Advertisement
Guest User

children

a guest
Oct 16th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package Google;
  2.  
  3. public class Children {
  4.     public String getChildName() {
  5.         return childName;
  6.     }
  7.  
  8.     public void setChildName(String childName) {
  9.         this.childName = childName;
  10.     }
  11.  
  12.     public String getChildBirthday() {
  13.         return childBirthday;
  14.     }
  15.  
  16.     public void setChildBirthday(String childBirthday) {
  17.         this.childBirthday = childBirthday;
  18.     }
  19.  
  20.     private String childName;
  21.     private String childBirthday;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement