public EntityIterableWrap getEntityChildren( EntityWrap parent ) {
Query q = new Query(KIND_NAME);
String pid = (String)parent.entity.getProperty(ID_PROP);
q.addFilter( PID_PROP, Query.FilterOperator.EQUAL, pid);
PreparedQuery pq = this.datastore.prepare(q);
return new EntityIterableWrap( pq.asIterable(), parent );
}
public EntityWrap getEntity( List<String> path, boolean autoinsert )
{
EntityWrap current = null;