Skip to content

Instantly share code, notes, and snippets.

@scott2449
Created February 28, 2011 20:08
Show Gist options
  • Save scott2449/847936 to your computer and use it in GitHub Desktop.
Save scott2449/847936 to your computer and use it in GitHub Desktop.
sample 'json' data structure in java
TestNode node = new TestNode("what","the","foo",new TestNode[]{
new TestNode("are", "you", "there",new TestNode[]{
new TestNode("are", "you", "there"),new TestNode
("yes", "i","am")
})
,new TestNode("yes", "i", "am")},new TestNode[]{
new TestNode("crap","this","works")
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment