Created
July 12, 2016 15:33
-
-
Save cosbor11/6c3562793015d1813602116854cc5d1f to your computer and use it in GitHub Desktop.
query for qbs and print each one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final List<Player> players = manager.executeQuery(query); | |
for (final Player qb : players) | |
{ | |
System.out.println(qb.getFirstName() + " " + qb.getLastName() + ": active=" + qb.getActive()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment