Class AnnotationFileParser.RecordStub

java.lang.Object
org.checkerframework.framework.stub.AnnotationFileParser.RecordStub
Enclosing class:
AnnotationFileParser

public static class AnnotationFileParser.RecordStub extends Object
Information about a record from a stub file.
  • Field Details Link icon

    • componentsByName Link icon

      public final Map<String,AnnotationFileParser.RecordComponentStub> componentsByName
      A map from name to record component. It must have deterministic insertion/iteration order: the order that they are declared in the record header.
    • componentsInCanonicalConstructor Link icon

      public @MonotonicNonNull List<AnnotatedTypeMirror> componentsInCanonicalConstructor
      If the canonical constructor is given in the stubs, the annotated types (in component declaration order) for the constructor. Null if not present in the stubs.
  • Constructor Details Link icon

    • RecordStub Link icon

      public RecordStub(Map<String,AnnotationFileParser.RecordComponentStub> componentsByName)
      Creates a new RecordStub.
      Parameters:
      componentsByName - a map from name to record component. It must have deterministic insertion/iteration order: the order that they are declared in the record header.
  • Method Details Link icon

    • getComponentsInCanonicalConstructor Link icon

      public List<AnnotatedTypeMirror> getComponentsInCanonicalConstructor()
      Returns the annotated types for the parameters to the canonical constructor. This is either from explicit annotations on the constructor in the stubs, otherwise it's taken from the annotations on the record components in the stubs.
      Returns:
      the annotated types for the parameters to the canonical constructor