Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. {
  2. "a": "something",
  3. "c": "something",
  4. "e": "something"
  5. }
  6.  
  7. {
  8. "some_name":
  9. {
  10. "a": "b",
  11. "c": "d",
  12. "e": "f"
  13. }
  14. }
  15.  
  16. {
  17. "some_name":
  18. {
  19. "some_other_name":
  20. {
  21. "a": "b",
  22. "c": "d",
  23. "e": "f"
  24. }
  25. }
  26. }
  27.  
  28. class OuterClassName{
  29. public List<Apple> apples;
  30. public String picker;
  31. }
  32.  
  33. class Apple{
  34. public int worms;
  35. public String color;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement