final LoadingCache<TypeElement, Type> cache = CacheBuilder.newBuilder().build(new CacheLoader<TypeElement, Type>() {
@Override
public Type load(TypeElement typeElement) throws Exception {
return new SimpleType(new StringName(typeElement.getQualifiedName() + "_"));
}
});
for (TypeElement annotation : annotations) {