public class InitializationVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>,Value extends CFAbstractValue<Value>,Store extends InitializationStore<Value,Store>> extends BaseTypeVisitor<Factory>
NullnessChecker.BaseTypeVisitor.OverrideChecker| Modifier and Type | Field and Description | 
|---|---|
| protected AnnotationFormatter | annoFormatter | 
| protected List<VariableTree> | initializedFields | 
atypeFactory, checker, contractsUtils, positions, TARGET, targetValueElement, typeValidator, visitorStateelements, root, trees, treesWithSuppressWarnings, types| Constructor and Description | 
|---|
| InitializationVisitor(BaseTypeChecker checker) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | checkConstructorInvocation(AnnotatedTypeMirror.AnnotatedDeclaredType dt,
                          AnnotatedTypeMirror.AnnotatedExecutableType constructor,
                          NewClassTree src)Check that the (explicit) annotations on a new class tree are comparable to the result type
 of the constructor. | 
| protected void | checkConstructorResult(AnnotatedTypeMirror.AnnotatedExecutableType constructorType,
                      ExecutableElement constructorElement)Issue a warning if the result type of the constructor is not top. | 
| protected boolean | checkContract(FlowExpressions.Receiver expr,
             AnnotationMirror necessaryAnnotation,
             AnnotationMirror inferredAnnotation,
             CFAbstractStore<?,?> store)Returns true if and only if  inferredAnnotationis valid for a given expression to
 match thenecessaryAnnotation. | 
| protected void | checkFieldsInitialized(Tree blockNode,
                      boolean staticFields,
                      Store store,
                      List<? extends AnnotationMirror> receiverAnnotations)Checks that all fields (all static fields if  staticFieldsis true) are initialized in
 the given store. | 
| protected void | checkThisOrSuperConstructorCall(MethodInvocationTree superCall,
                               @CompilerMessageKey String errorKey)Checks that the following rule is satisfied: The type on a constructor declaration must be a
 supertype of the return type of "this()" or "super()" invocation within that constructor. | 
| protected void | commonAssignmentCheck(Tree varTree,
                     ExpressionTree valueExp,
                     @CompilerMessageKey String errorKey)Checks the validity of an assignment (or pseudo-assignment) from a value to a variable and
 emits an error message (through the compiler's messaging interface) if it is not valid. | 
| void | processClassTree(ClassTree node)Type-check classTree. | 
| void | setRoot(CompilationUnitTree root)Set the CompilationUnitTree to be used during any visits. | 
| Void | visitMethod(MethodTree node,
           Void p)Performs pseudo-assignment check: checks that the method obeys override and subtype rules to
 all overridden methods. | 
| Void | visitTypeCast(TypeCastTree node,
             Void p) | 
| Void | visitVariable(VariableTree node,
             Void p) | 
checkAccess, checkArguments, checkArrayInitialization, checkConditionalPostcondition, checkDefaultConstructor, checkExceptionParameter, checkExtendsImplements, checkFieldInvariantDeclarations, checkForAnnotatedJdk, checkMethodInvocability, checkMethodReferenceAsOverride, checkOverride, checkOverride, checkPostcondition, checkPreconditions, checkPurity, checkSuperConstructorCall, checkThisConstructorCall, checkThrownExpression, checkTypeArguments, checkTypecastRedundancy, checkTypecastSafety, checkVarargs, commonAssignmentCheck, commonAssignmentCheck, commonAssignmentCheckEndDiagnostic, commonAssignmentCheckEndDiagnostic, commonAssignmentCheckStartDiagnostic, createOverrideChecker, createTypeFactory, createTypeValidator, enclosingMemberSelect, enclosingStatement, getExceptionParameterLowerBoundAnnotations, getThrowUpperBoundAnnotations, getTypeFactory, isAccessAllowed, isTypeCastSafe, isValidUse, isValidUse, isValidUse, reportMethodInvocabilityError, reportPurityErrors, scan, shouldSkipUses, skipReceiverSubtypeCheck, testTypevarContainment, typeCheckVectorCopyIntoArgument, validateType, validateTypeOf, visitAnnotation, visitArrayAccess, visitAssignment, visitCatch, visitClass, visitCompilationUnit, visitCompoundAssignment, visitConditionalExpression, visitEnhancedForLoop, visitIdentifier, visitInstanceOf, visitLambdaExpression, visitMemberReference, visitMethodInvocation, visitNewArray, visitNewClass, visitReturn, visitThrow, visitTypeParameter, visitUnaryvisitgetCurrentPath, scanreduce, scan, visitAnnotatedType, visitArrayType, visitAssert, visitBinary, visitBlock, visitBreak, visitCase, visitContinue, visitDoWhileLoop, visitEmptyStatement, visitErroneous, visitExports, visitExpressionStatement, visitForLoop, visitIf, visitImport, visitIntersectionType, visitLabeledStatement, visitLiteral, visitMemberSelect, visitModifiers, visitModule, visitOpens, visitOther, visitPackage, visitParameterizedType, visitParenthesized, visitPrimitiveType, visitProvides, visitRequires, visitSwitch, visitSynchronized, visitTry, visitUnionType, visitUses, visitWhileLoop, visitWildcardprotected final AnnotationFormatter annoFormatter
protected final List<VariableTree> initializedFields
public InitializationVisitor(BaseTypeChecker checker)
public void setRoot(CompilationUnitTree root)
SourceVisitorcom.sun.source.util.TreePathScanner.scan(TreePath, P), the CompilationUnitTree of the
 TreePath has to be equal to root.setRoot in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>protected void checkConstructorInvocation(AnnotatedTypeMirror.AnnotatedDeclaredType dt, AnnotatedTypeMirror.AnnotatedExecutableType constructor, NewClassTree src)
BaseTypeVisitorIssue a warning if the annotations on the constructor invocation is a subtype of the constructor result type. This is equivalent to down-casting.
checkConstructorInvocation in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>protected void checkConstructorResult(AnnotatedTypeMirror.AnnotatedExecutableType constructorType, ExecutableElement constructorElement)
BaseTypeVisitorBaseTypeVisitor.isValidUse(AnnotatedTypeMirror.AnnotatedDeclaredType,AnnotatedTypeMirror.AnnotatedDeclaredType,Tree).checkConstructorResult in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>constructorType - AnnotatedExecutableType for the constructorconstructorElement - element that declares the constructorprotected void checkThisOrSuperConstructorCall(MethodInvocationTree superCall, @CompilerMessageKey String errorKey)
BaseTypeVisitorcheckThisOrSuperConstructorCall in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>protected void commonAssignmentCheck(Tree varTree, ExpressionTree valueExp, @CompilerMessageKey String errorKey)
BaseTypeVisitorcommonAssignmentCheck in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>varTree - the AST node for the lvalue (usually a variable)valueExp - the AST node for the rvalue (the new value)errorKey - the error message to use if the check fails (must be a compiler message key,
     see CompilerMessageKey)public Void visitVariable(VariableTree node, Void p)
visitVariable in interface TreeVisitor<Void,Void>visitVariable in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>protected boolean checkContract(FlowExpressions.Receiver expr, AnnotationMirror necessaryAnnotation, AnnotationMirror inferredAnnotation, CFAbstractStore<?,?> store)
BaseTypeVisitorinferredAnnotation is valid for a given expression to
 match the necessaryAnnotation.
 By default, inferredAnnotation must be a subtype of necessaryAnnotation,
 but subclasses might override this behavior.
checkContract in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>public Void visitTypeCast(TypeCastTree node, Void p)
visitTypeCast in interface TreeVisitor<Void,Void>visitTypeCast in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>public void processClassTree(ClassTree node)
BaseTypeVisitorBaseTypeVisitor.visitClass(ClassTree, Void).processClassTree in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>node - class to checkpublic Void visitMethod(MethodTree node, Void p)
BaseTypeVisitorThe override rule specifies that a method, m1, may override a method m2 only if:
visitMethod in interface TreeVisitor<Void,Void>visitMethod in class BaseTypeVisitor<Factory extends InitializationAnnotatedTypeFactory<Value,Store,?,?>>protected void checkFieldsInitialized(Tree blockNode, boolean staticFields, Store store, List<? extends AnnotationMirror> receiverAnnotations)
staticFields is true) are initialized in
 the given store.