|
Lombok - v0.10.8 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectlombok.eclipse.EclipseAnnotationHandler<T>
public abstract class EclipseAnnotationHandler<T extends Annotation>
Implement this interface if you want to be triggered for a specific annotation.
You MUST replace 'T' with a specific annotation type, such as:
public class HandleGetter implements EclipseAnnotationHandler<Getter>
Because this generics parameter is inspected to figure out which class you're interested in.
You also need to register yourself via SPI discovery as being an implementation of EclipseAnnotationHandler.
| Constructor Summary | |
|---|---|
EclipseAnnotationHandler()
|
|
| Method Summary | |
|---|---|
boolean |
deferUntilPostDiet()
Return true if this handler should not be run in the diet parse phase. |
abstract void |
handle(AnnotationValues<T> annotation,
org.eclipse.jdt.internal.compiler.ast.Annotation ast,
EclipseNode annotationNode)
Called when an annotation is found that is likely to match the annotation you're interested in. |
void |
preHandle(AnnotationValues<T> annotation,
org.eclipse.jdt.internal.compiler.ast.Annotation ast,
EclipseNode annotationNode)
Called when you want to defer until post diet, and we're still in pre-diet. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public EclipseAnnotationHandler()
| Method Detail |
|---|
public abstract void handle(AnnotationValues<T> annotation,
org.eclipse.jdt.internal.compiler.ast.Annotation ast,
EclipseNode annotationNode)
annotation - The actual annotation - use this object to retrieve the annotation parameters.ast - The Eclipse 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 void preHandle(AnnotationValues<T> annotation,
org.eclipse.jdt.internal.compiler.ast.Annotation ast,
EclipseNode annotationNode)
public boolean deferUntilPostDiet()
true here. Otherwise, return false here.
|
Lombok - v0.10.8 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||