Skip to content

Instantly share code, notes, and snippets.

@juanarzola
Created December 20, 2010 22:17
Show Gist options
  • Save juanarzola/749100 to your computer and use it in GitHub Desktop.
Save juanarzola/749100 to your computer and use it in GitHub Desktop.
switch (group) {
case NAME_GROUP:{
switch(row){
case FIRST_NAME_ROW:{
// do first name things
break;
}
// ...
}
break;
}
case DETAILS_GROUP:{
switch(row){
case AGE_ROW:{
// do age things
break;
}
// ...
}
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment