Lombok - v0.10.8

lombok.eclipse.handlers
Class HandleGetter

java.lang.Object
  extended by lombok.eclipse.EclipseAnnotationHandler<Getter>
      extended by lombok.eclipse.handlers.HandleGetter

@ProviderFor(value=EclipseAnnotationHandler.class)
public class HandleGetter
extends EclipseAnnotationHandler<Getter>

Handles the lombok.Getter annotation for eclipse.


Constructor Summary
HandleGetter()
           
 
Method Summary
 boolean fieldQualifiesForGetterGeneration(EclipseNode field)
           
 void generateGetterForField(EclipseNode fieldNode, org.eclipse.jdt.internal.compiler.ast.ASTNode pos, AccessLevel level, boolean lazy)
          Generates a getter on the stated field.
 boolean generateGetterForType(EclipseNode typeNode, EclipseNode pos, AccessLevel level, boolean checkForTypeLevelGetter)
           
 void handle(AnnotationValues<Getter> 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.
 
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

HandleGetter

public HandleGetter()
Method Detail

generateGetterForType

public boolean generateGetterForType(EclipseNode typeNode,
                                     EclipseNode pos,
                                     AccessLevel level,
                                     boolean checkForTypeLevelGetter)

fieldQualifiesForGetterGeneration

public boolean fieldQualifiesForGetterGeneration(EclipseNode field)

generateGetterForField

public void generateGetterForField(EclipseNode fieldNode,
                                   org.eclipse.jdt.internal.compiler.ast.ASTNode pos,
                                   AccessLevel level,
                                   boolean lazy)
Generates a getter on the stated field. Used by HandleData. The difference between this call and the handle method is as follows: If there is a lombok.Getter annotation on the field, it is used and the same rules apply (e.g. warning if the method already exists, stated access level applies). If not, the getter is still generated if it isn't already there, though there will not be a warning if its already there. The default access level is used.


handle

public void handle(AnnotationValues<Getter> annotation,
                   org.eclipse.jdt.internal.compiler.ast.Annotation ast,
                   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<Getter>
Parameters:
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.

Lombok - v0.10.8

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