if (fields != null && fields.length > 0) {
for (Field f : fields) {
InjectParent[] anno_parent = f.getDeclaredAnnotationsByType(InjectParent.class);
if (anno_parent != null && anno_parent.length > 0) {
Utility.log("LooB - fromStock - Field: " + f);
InjectParent a = anno_parent[0];
injectParent(a, result, f);
}
}
}