for (T element : elements) {
Inject injection = getAnnotation(element, Inject.class);
if (injection != null) {
set.add(element);
} else {
InjectAnnotation modelInject = getAnnotation(element, InjectAnnotation.class);
if (modelInject != null) {
set.add(element);
}
}
}