Skip to content

Instantly share code, notes, and snippets.

@d6y
Created July 8, 2012 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d6y/3072110 to your computer and use it in GitHub Desktop.
Save d6y/3072110 to your computer and use it in GitHub Desktop.
Dull data access
for (int i = 0; i < resultFeed.getEntries().size(); i++) {
ContactEntry entry = resultFeed.getEntries().get(i);
if (entry.hasName()) {
Name name = entry.getName();
if (name.hasFullName()) {
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment