java.lang.Object
org.aspectj.org.eclipse.jdt.internal.compiler.apt.dispatch.ProcessorInfo

public class ProcessorInfo extends Object
Cached information associated with a Processor in the context of annotation processor dispatch.

This class supports inclusion in a collection by implementing equals() and hashCode(). Its concept of identity is based on the class object of the Processor that it wraps; so, for instance, it is not possible to have a Set that contains more than one instance of a particular Processor class. In fact, it is possible to have more than one instance of a Processor if there are multiple build threads, but within the context of a particular dispatch manager, there will only be one of any given Processor class.

  • Konstruktordetails

  • Methodendetails

    • computeSupportedAnnotations

      public boolean computeSupportedAnnotations(Set<TypeElement> annotations, Set<TypeElement> result)
      Compute the subset of annotations that are described by annotationTypes, and determine whether the processor should be called. A processor will be called if it has any annotations to process, or if it supports "*", or if it was called in a previous round. If the return value of this method is true once for a given processor, then it will always be true on subsequent calls.
      Parameter:
      annotations - a set of annotation types
      result - an empty modifiable set, which upon return will contain a subset of annotations, which may be empty but will not be null.
      Gibt zurück:
      true if the processor should be called on this round.
    • supportsStar

      public boolean supportsStar()
      Gibt zurück:
      true if the processor included "*" among its list of supported annotations.
    • reset

      public void reset()
      Must be called at the beginning of a build to ensure that no information is carried over from the previous build. In particular, processors are required to be called on every round after the round in which they are first called; this method resets the "has been called" flag.
    • hashCode

      public int hashCode()
      Setzt außer Kraft:
      hashCode in Klasse Object
    • equals

      public boolean equals(Object obj)
      Setzt außer Kraft:
      equals in Klasse Object
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Object
    • getSupportedAnnotationTypesAsString

      public String getSupportedAnnotationTypesAsString()
      Gibt zurück:
      a string representing the set of supported annotation types, in a format suitable for debugging. The format is unspecified and subject to change.