API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.annotation.processing. Processor View Source
Author(s)
Joseph D. Darcy
Scott Seligman
Peter von der Ahé
Since
1.6
Version
1.13 06/08/28
Serial
Hierarchy
 Processor
Subinterfaces
Description
public interface Processor
  The interface for an annotation processor.
See also:   
Methods
Hide/Show inherited methods
public Iterable<Completion> getCompletions (Element element, AnnotationMirror annotation, ExecutableElement member, String userText)
  Returns to the tool infrastructure an iterable of suggested completions to an annotation.
public Set<String> getSupportedAnnotationTypes ()
  Returns the names of the annotation types supported by this processor.
public Set<String> getSupportedOptions ()
  Returns the options recognized by this processor.
public SourceVersion getSupportedSourceVersion ()
  Returns the latest source version supported by this annotation processor.
public void init (ProcessingEnvironment processingEnv)
  Initializes the processor with the processing environment.
public boolean process (Set<TypeElement> annotations, RoundEnvironment roundEnv)
  Processes a set of annotation types on type elements originating from the prior round and returns whether or not these annotations are claimed by this processor.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar