Guest User

Untitled

a guest
Jul 17th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class ParentClass {
  2. private Date creationDate = Date.today();
  3.  
  4. private class ChildClass {
  5. private Date getCreationDate() {
  6. return creationDate;
  7. }
  8.  
  9. }
  10. }
Add Comment
Please, Sign In to add comment