From 8c2082a97b65daf57377548ac5c328f347977d1f Mon Sep 17 00:00:00 2001
From: Jukka Zitting
+ * The depth of the returned tree is governed by the {@code depth} + * parameter: *
| depth = 0 | @@ -305,8 +311,10 @@ public interface MicroKernel { * { * "someprop" : "someval", * ":childNodeCount" : 2, - * "child1" : {}, - * "child2" : {} + * ":children": { + * "child1" : {}, + * "child2" : {} + * } * } * * Example (depth=1): @@ -314,15 +322,19 @@ public interface MicroKernel { * { * "someprop" : "someval", * ":childNodeCount" : 2, - * "child1" : { - * "prop1" : 123, - * ":childNodeCount" : 2, - * "grandchild1" : {}, - * "grandchild2" : {} - * }, - * "child2" : { - * "prop1" : "bar", - * ":childNodeCount" : 0 + * ":children": { + * "child1" : { + * "prop1" : 123, + * ":childNodeCount" : 2, + * ":children": { + * "grandchild1" : {}, + * "grandchild2" : {} + * } + * }, + * "child2" : { + * "prop1" : "bar", + * ":childNodeCount" : 0 + * } * } * } * -- 1.8.3.msysgit.0