lombok.eclipse.handlers
Class HandleToString
java.lang.Object
lombok.eclipse.handlers.HandleToString
- All Implemented Interfaces:
- EclipseAnnotationHandler<ToString>
@ProviderFor(value=EclipseAnnotationHandler.class)
public class HandleToString
- extends java.lang.Object
- implements EclipseAnnotationHandler<ToString>
Handles the ToString annotation for eclipse.
|
Method Summary |
boolean |
generateToString(EclipseNode typeNode,
EclipseNode errorNode,
java.util.List<java.lang.String> excludes,
java.util.List<java.lang.String> includes,
boolean includeFieldNames,
java.lang.Boolean callSuper,
boolean whineIfExists,
boolean useFieldsDirectly)
|
void |
generateToStringForType(EclipseNode typeNode,
EclipseNode errorNode)
|
boolean |
handle(AnnotationValues<ToString> 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 java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
HandleToString
public HandleToString()
generateToStringForType
public void generateToStringForType(EclipseNode typeNode,
EclipseNode errorNode)
handle
public boolean handle(AnnotationValues<ToString> annotation,
org.eclipse.jdt.internal.compiler.ast.Annotation ast,
EclipseNode annotationNode)
- Description copied from interface:
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 interface EclipseAnnotationHandler<ToString>
- 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.
- Returns:
true if you don't want to be called again about this annotation during this
compile session (you've handled it), or false to indicate you aren't done yet.
generateToString
public boolean generateToString(EclipseNode typeNode,
EclipseNode errorNode,
java.util.List<java.lang.String> excludes,
java.util.List<java.lang.String> includes,
boolean includeFieldNames,
java.lang.Boolean callSuper,
boolean whineIfExists,
boolean useFieldsDirectly)
Copyright © 2009 Reinier Zwitserloot and Roel Spilker, licensed under the MIT licence.