@ProviderFor(value=JavacAnnotationHandler.class) public class HandleNonNull extends JavacAnnotationHandler<NonNull>
| Constructor and Description |
|---|
HandleNonNull() |
| Modifier and Type | Method and Description |
|---|---|
void |
handle(AnnotationValues<NonNull> annotation,
com.sun.tools.javac.tree.JCTree.JCAnnotation ast,
JavacNode annotationNode)
Called when an annotation is found that is likely to match the annotation you're interested in.
|
boolean |
isNullCheck(com.sun.tools.javac.tree.JCTree.JCStatement stat) |
String |
returnVarNameIfNullCheck(com.sun.tools.javac.tree.JCTree.JCStatement stat)
Checks if the statement is of the form 'if (x == null) {throw WHATEVER;},
where the block braces are optional.
|
getAnnotationHandledByThisHandlerpublic void handle(AnnotationValues<NonNull> annotation, com.sun.tools.javac.tree.JCTree.JCAnnotation ast, JavacNode annotationNode)
JavacAnnotationHandlerhandle in class JavacAnnotationHandler<NonNull>annotation - The actual annotation - use this object to retrieve the annotation parameters.ast - The javac AST node representing the annotation.annotationNode - The Lombok AST wrapper around the 'ast' parameter. You can use this object
to travel back up the chain (something javac AST can't do) to the parent of the annotation, as well
as access useful methods such as generating warnings or errors focused on the annotation.public boolean isNullCheck(com.sun.tools.javac.tree.JCTree.JCStatement stat)
public String returnVarNameIfNullCheck(com.sun.tools.javac.tree.JCTree.JCStatement stat)
Copyright © 2009-2014 The Project Lombok Authors, licensed under the MIT licence.