0
全部 我正在將我的項目從xtend 2.4.3遷移到2.7.3用xtend 2.7.3設置註釋值?
我遇到了一些問題。 這裏是代碼適用於2.4.3
val AttrType = findTypeGlobally(typeof(Attr));
val fld = Cls.addField(Pkt::getMemberName(m))
[
val annot = addAnnotation(AttrType)
annot.set("value", GenHelper::getAnnot(m))
visibility = Visibility::PUBLIC
]
setFieldType(m, fld, context)
在2.7.3,addAnnotation返回AnnotationReference。
沒有辦法將值設置到AnnotationReference中。 如何解決它?
謝謝。