for (ClassMember member : members) {
if (member instanceof FieldDeclaration) {
FieldDeclaration fieldDeclaration = (FieldDeclaration) member;
for (Annotation annotation : fieldDeclaration.getMetadata()) {
// prepare property kind (if property annotation at all)
AngularPropertyKind kind = null;
if (isAngularAnnotation(annotation, NG_ATTR)) {
kind = AngularPropertyKind.ATTR;
} else if (isAngularAnnotation(annotation, NG_CALLBACK)) {
kind = AngularPropertyKind.CALLBACK;
} else if (isAngularAnnotation(annotation, NG_ONE_WAY)) {