2015-01-13 18:13:42 +00:00
|
|
|
/*
|
2020-12-30 17:20:54 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2015-01-13 18:13:42 +00:00
|
|
|
* @bug 8066843
|
|
|
|
* @summary Annotation processors should be able to print multiple errors at the same location.
|
|
|
|
* @library /tools/javac/lib
|
2015-05-21 18:41:04 +00:00
|
|
|
* @modules jdk.compiler
|
2015-01-13 18:13:42 +00:00
|
|
|
* @build JavacTestingAbstractProcessor TestMultipleErrors
|
|
|
|
* @compile/fail/ref=TestMultipleErrors.out -XDrawDiagnostics -processor TestMultipleErrors TestMultipleErrors.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
import java.util.*;
|
|
|
|
import javax.annotation.processing.*;
|
|
|
|
import javax.lang.model.element.*;
|
|
|
|
import javax.tools.Diagnostic.Kind;
|
|
|
|
import com.sun.source.util.TreePath;
|
|
|
|
import com.sun.source.util.Trees;
|
|
|
|
|
|
|
|
public class TestMultipleErrors extends JavacTestingAbstractProcessor {
|
|
|
|
@Override
|
|
|
|
public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
|
|
|
|
for (Element root : roundEnv.getRootElements()) {
|
2024-01-17 00:29:05 +00:00
|
|
|
processingEnv.getMessager().printError("error1", root);
|
|
|
|
processingEnv.getMessager().printError("error2", root);
|
2015-01-13 18:13:42 +00:00
|
|
|
|
|
|
|
Trees trees = Trees.instance(processingEnv);
|
|
|
|
TreePath path = trees.getPath(root);
|
|
|
|
|
|
|
|
trees.printMessage(Kind.ERROR, "error3", path.getLeaf(), path.getCompilationUnit());
|
|
|
|
trees.printMessage(Kind.ERROR, "error4", path.getLeaf(), path.getCompilationUnit());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|