@Override
public boolean process(final Set<? extends TypeElement> annotations,
final RoundEnvironment roundEnv) {
for (final Element elem : roundEnv.getElementsAnnotatedWith(BuilderFactory.class)) {
final BuilderFactory annotation = elem.getAnnotation(BuilderFactory.class);
final Class<?> implementationClass = annotation.value();
}
return true;
}