This is an enhancment request for QueryImpl.
originally posted here
http://groups.google.com/group/objectify-appengine/browse_thread/thread/eb60b64c
270bca93# (Which was maybe the wrong place for this kind of thing?)
Id like to pass in my own collection and have objectify fill it up for me.
in QueryImpl:
/** @see com.googlecode.objectify.Query#list() */
public Collection<T> collect(Collection<T> yourOwnCollection){
for (T obj: this)
yourOwnCollection.add(obj);
return yourOwnCollection;
}
or similar.
this would save me a step in iterating through a list just to get a different
collection impl
Can anyone submit patches?
cheers.
Original issue reported on code.google.com by senior.p...@gmail.com on 20 Aug 2011 at 5:56
Original issue reported on code.google.com by
senior.p...@gmail.com
on 20 Aug 2011 at 5:56