| java.lang.Object com.sun.tools.javac.processing.JavacRoundEnvironment
JavacRoundEnvironment | public class JavacRoundEnvironment implements RoundEnvironment(Code) | | Object providing state about a prior round of annotation processing.
This is NOT part of any API supported by Sun Microsystems.
If you write code that depends on this, you do so at your own risk.
This code and its internal interfaces are subject to change or
deletion without notice.
|
errorRaised | public boolean errorRaised()(Code) | | Returns
true if an error was raised in the prior round
of processing; returns
false otherwise.
true if an error was raised in the prior roundof processing; returns false otherwise. |
getElementsAnnotatedWith | public Set<? extends Element> getElementsAnnotatedWith(TypeElement a)(Code) | | Returns the elements annotated with the given annotation type.
Only type elements included in this round of annotation
processing, or declarations of members, parameters, or type
parameters declared within those, are returned. Included type
elements are
and any types nested within them.
Parameters: a - annotation type being requested the elements annotated with the given annotation type,or an empty set if there are none |
getRootElements | public Set<? extends Element> getRootElements()(Code) | | Returns the type elements specified by the prior round.
the types elements specified by the prior round, or anempty set if there were none |
processingOver | public boolean processingOver()(Code) | | |
|
|