Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /** Implements methods that access the top-level menu. */
  2. Class BaseLayout {...}
  3.  
  4. /** Implements methods that access elements of the "Start" page */
  5. Class StartPage extends Base Layout {...}
  6.  
  7. /** Implements methods that access elements of the "About" page */
  8. Class AboutPage extends Base Layout {...}
  9.  
  10. /** Implements methods that access the top-level menu. */
  11. Class BaseLayout {...}
  12.  
  13. /** Implements methods that access elements of the "Start" page */
  14. Class StartPage {
  15. BaseLayout parent;
  16. // ...
  17. }
  18.  
  19. /** Implements methods that access elements of the "About" page */
  20. Class AboutPage {
  21. BaseLayout parent;
  22. // ...
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement