这是How can I get Annotation class from TypeDescription
的后续问题我正在尝试使用Plugin
生成方法。
具有给定的类,例如。
class {
@Func
T some;
}
我在带有特定注释的字段上找到了
我正在寻求帮助来创建一个像这样的方法。
public <R> R applySome(Function<T, R> function) {
return function.apply(some);
}
如何在其中制作方法
@Override
public DynamicType.Builder<?> apply(final DynamicType.Builder<?> builder, final TypeDescription typeDescription,
final ClassFileLocator classFileLocator) {
System.out.printf("apply(%1$s, %2$s, %3$s)\n", builder, typeDescription, classFileLocator);
final List<FieldDescription.InDefinedShape> fields = fields(typeDescription);
fields.forEach(field -> {
System.out.printf("\tfield: %1$s\n", field);
System.out.printf("\tfield.name: %1$s\n", field.getName());
System.out.printf("\tfield.type: %1$s\n", field.getType());
System.out.printf("\tfield.declaringType: %1$s\n", field.getDeclaringType());
// define the method.
});
return null;
}
答案 0 :(得分:0)
作为参数接收的fixed header
具有DynamicType.Builder
方法。作为一种实现,可以使用defineMethod
。