Back to project page DKO.
The source code is released under:
GNU Lesser General Public License
If you think the Android project DKO listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package sakila; import org.kered.dko.Query; //from ww w . j a v a 2 s .co m import com.mycompany.dko.sakila.Actor; public class Example0 { public static void main(String[] args) { Query<Actor> actors = Actor.ALL.limit(10); for (Actor actor : actors) { System.out.println(actor.getFirstName() +" "+ actor.getLastName()); } } }