Lombok - v0.10.8

lombok.eclipse.handlers
Class HandleLog.HandleSlf4jLog

java.lang.Object
  extended by lombok.eclipse.EclipseAnnotationHandler<Slf4j>
      extended by lombok.eclipse.handlers.HandleLog.HandleSlf4jLog
Enclosing class:
HandleLog

@ProviderFor(value=EclipseAnnotationHandler.class)
public static class HandleLog.HandleSlf4jLog
extends EclipseAnnotationHandler<Slf4j>

Handles the Slf4j annotation for Eclipse.


Constructor Summary
HandleLog.HandleSlf4jLog()
           
 
Method Summary
 void handle(AnnotationValues<Slf4j> annotation, org.eclipse.jdt.internal.compiler.ast.Annotation source, EclipseNode annotationNode)
          Called when an annotation is found that is likely to match the annotation you're interested in.
 
Methods inherited from class lombok.eclipse.EclipseAnnotationHandler
deferUntilPostDiet, preHandle
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HandleLog.HandleSlf4jLog

public HandleLog.HandleSlf4jLog()
Method Detail

handle

public void handle(AnnotationValues<Slf4j> annotation,
                   org.eclipse.jdt.internal.compiler.ast.Annotation source,
                   EclipseNode annotationNode)
Description copied from class: EclipseAnnotationHandler
Called when an annotation is found that is likely to match the annotation you're interested in. Be aware that you'll be called for ANY annotation node in the source that looks like a match. There is, for example, no guarantee that the annotation node belongs to a method, even if you set your TargetType in the annotation to methods only.

Specified by:
handle in class EclipseAnnotationHandler<Slf4j>
Parameters:
annotation - The actual annotation - use this object to retrieve the annotation parameters.
source - 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.

Lombok - v0.10.8

Copyright © 2009-2011 The Project Lombok Authors, licensed under the MIT licence.