我尝试使用 xtend 的活动注释,我想创建一个实时注释,它可以生成一个String[]
字段来记录方法参数的名称。
@Target(ElementType::TYPE)
@Active(typeof(ParameterRecorderProcessor))
annotation ParameterRecorder {
}
class ParameterRecorderProcessor extends AbstractClassProcessor {
override doTransform(MutableClassDeclaration annotatedClass, extension TransformationContext context) {
var iii = 0;
// add the public methods to the interface
for (method : annotatedClass.declaredMethods) {
if (method.visibility == Visibility::PUBLIC) {
iii = iii + 1
annotatedClass.addField(method.simpleName + "_" + iii) [
type = typeof(String[]).newTypeReference // String[] doesn't work
var s = ""
for (p : method.parameters) {
if(s.length > 0) s = s + ","
s = s + "\"" + p.simpleName + "\""
}
val ss = s
initializer = [
'''[«ss»]'''
]
]
}
}
}
}
你可以看到我typeof(String[]).newTypeReference
用来定义新创建字段的类型,但它不起作用。生成的 java 代码如下所示:
private Object index_1;
它使用Object
并且该initializer
部分是空的。
如何解决?