lombok.eclipse.handlers
Class HandleVal
java.lang.Object
lombok.eclipse.EclipseASTAdapter
lombok.eclipse.handlers.HandleVal
- All Implemented Interfaces:
- EclipseASTVisitor
@ProviderFor(value=EclipseASTVisitor.class)
public class HandleVal
- extends EclipseASTAdapter
|
Method Summary |
boolean |
deferUntilPostDiet()
Return true if this handler should not be run in the diet parse phase. |
void |
visitLocal(EclipseNode localNode,
org.eclipse.jdt.internal.compiler.ast.LocalDeclaration local)
Visits a local declaration - that is, something like 'int x = 10;' on the method level. |
| Methods inherited from class lombok.eclipse.EclipseASTAdapter |
endVisitCompilationUnit, endVisitField, endVisitInitializer, endVisitLocal, endVisitMethod, endVisitMethodArgument, endVisitStatement, endVisitType, visitAnnotationOnField, visitAnnotationOnLocal, visitAnnotationOnMethod, visitAnnotationOnMethodArgument, visitAnnotationOnType, visitCompilationUnit, visitField, visitInitializer, visitMethod, visitMethodArgument, visitStatement, visitType |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HandleVal
public HandleVal()
deferUntilPostDiet
public boolean deferUntilPostDiet()
- Description copied from interface:
EclipseASTVisitor
- Return true if this handler should not be run in the diet parse phase.
'diet parse' is where method bodies aren't filled in yet. If you have a method-level annotation that modifies the contents of that method,
return
true here. Otherwise, return false here.
visitLocal
public void visitLocal(EclipseNode localNode,
org.eclipse.jdt.internal.compiler.ast.LocalDeclaration local)
- Description copied from class:
EclipseASTAdapter
- Visits a local declaration - that is, something like 'int x = 10;' on the method level.
- Specified by:
visitLocal in interface EclipseASTVisitor- Overrides:
visitLocal in class EclipseASTAdapter
Copyright © 2009-2011 The Project Lombok Authors, licensed under the MIT licence.