Skip to content

Instantly share code, notes, and snippets.

@dagvadorj
Created September 13, 2012 05:19
Show Gist options
  • Save dagvadorj/3712057 to your computer and use it in GitHub Desktop.
Save dagvadorj/3712057 to your computer and use it in GitHub Desktop.
Field [] allFields = Citizen.class.getFields();
List<Field> calculatedFields = new ArrayList<Field>();
for (Field field : allFields) {
if (field.isAnnotationPresent(Calculated.class)) {
calculatedFields.add(field);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment