Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Class Book
  2. {
  3. String name;
  4. String id;
  5. }
  6.  
  7. Class Book
  8. {
  9. String name;
  10. String id;
  11. String xyzTitle;
  12. int abcNumberOfPages;
  13. float abcHeight;
  14. float abcWidth;
  15. }
  16.  
  17. Class XYZBookInfo
  18. {
  19. String title;
  20. }
  21.  
  22. Class ABCBookInfo
  23. {
  24. int numberOfPages;
  25. float height;
  26. float width;
  27. }
  28.  
  29. Class Book
  30. {
  31. String name;
  32. String id;
  33. XYZBookInfo xyzInfo;
  34. ABCBookInfo abcInfo;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement