Class AnnotationProcessor_1_0

  • All Implemented Interfaces:
    com.gradle.scan.eventmodel.EventData

    @GradleVersion(since="5.1")
    @PluginVersion(since="2.3")
    public class AnnotationProcessor_1_0
    extends Object
    implements com.gradle.scan.eventmodel.EventData
    An encounter of a Java annotation processor.

    Emitted after the first Java compilation that encountered the processor with the given class name and type.

    See Also:
    AnnotationProcessorExecutionData_1_0
    • Field Detail

      • id

        public final long id
        The ID of the annotation processor.
      • className

        public final String className
        The fully-qualified class name of this annotation processor.
      • type

        public final String type
        The type of this annotation processor as it relates to incremental processing.

        Values:

        • ISOLATING
        • AGGREGATING
        • UNKNOWN

        Please see the Gradle documentation for more information on the meaning of the values.

    • Constructor Detail

      • AnnotationProcessor_1_0

        public AnnotationProcessor_1_0​(long id,
                                       String className,
                                       String type)