如果我希望IDE在注释本身上显示来自注释处理的错误,则应使用以下形式的printMessage():
printMessage(Diagnostic.Kind kind, CharSequence msg, Element e, AnnotationMirror a)
但是我找不到找到该AnnotationMirror的好方法。
使用代码示例these和these,结合我在那里发现的内容,我发现了一种复杂的方法:
@Override
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
Set<? extends Element> classesForBuilder = roundEnv.getElementsAnnotatedWith(AddBuilder.class);
for(Element classElement : classesForBuilder){
if (classElement.getModifiers().contains(Modifier.ABSTRACT)) {
return annoError(classElement, "AnnoBuilder cannot be applied to an abstract class.", AddBuilder.class);
.......
boolean annoError(Element annotatedElement, String message, Class<? extends Annotation> annoClass ){
for(AnnotationMirror annotationMirror : annotatedElement.getAnnotationMirrors()){
>>>>>>>>if(((TypeElement)annotationMirror.getAnnotationType().asElement())
.getQualifiedName().toString()
.equals( annoClass.getCanonicalName())) {
messager.printMessage(Kind.ERROR, message, annotatedElement, annotationMirror);
} else {
messager.printMessage(Kind.ERROR, message+" + no Annotation found.", annotatedElement);
}
}
return true;
}
那行得通。但我不喜欢真正糟糕的第二if
。
我发现了通过String进行比较的较短方法:
if(annotationMirror.getAnnotationType().toString().equals(annoClass.getCanonicalName()))
我不明白为什么在所有已发布的示例中都只使用了通过许多类进行超长比较的方式。
但是我仍然想缩短它。
if(annotationMirror.getAnnotationType().equals(annoClass))
不起作用。
我可以以某种方式比较类而不将其转换为名称吗?
答案 0 :(得分:0)
我认为您要在Types
类中提供什么,您可以像这样使用isSameType
方法
annotatedElement.getAnnotationMirrors()
.stream()
.filter(annotationMirror -> types.isSameType(annotationMirror.getAnnotationType(), elements.getTypeElement(annoClass.getCanonicalName()).asType()))
.findFirst()
.map(annotationMirror -> {
messager.printMessage(Diagnostic.Kind.ERROR, message, annotatedElement, annotationMirror);
return true;
})
.orElseGet(() -> {
messager.printMessage(Diagnostic.Kind.ERROR, message + " + no Annotation found.", annotatedElement);
return false;
});
您不应该使用从类型名称获得的String文字进行比较,因为这样可能会在intellij和eclipse之间发挥不同的作用。