API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.annotation.processing. RoundEnvironment View Source
Author(s)
Joseph D. Darcy
Scott Seligman
Peter von der Ahé
Since
1.6
Version
1.6 06/08/02
Serial
Hierarchy
 RoundEnvironment
Subinterfaces
Description
public interface RoundEnvironment
  An annotation processing tool framework will provide an annotation processor with an object implementing this interface so that the processor can query for information about a round of annotation processing.
See also:   
Methods
Hide/Show inherited methods
public boolean errorRaised ()
  Returns true if an error was raised in the prior round of processing; returns false otherwise.
public Set<Element> getElementsAnnotatedWith (Class<Annotation> a)
  Returns the elements annotated with the given annotation type.
public Set<Element> getElementsAnnotatedWith (TypeElement a)
  Returns the elements annotated with the given annotation type.
public Set<Element> getRootElements ()
  Returns the root elements for annotation processing generated by the prior round.
public boolean processingOver ()
  Returns true if types generated by this round will not be subject to a subsequent round of annotation processing; returns false otherwise.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar