aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/eclipse/handlers/HandleSetter.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-07-12 00:35:17 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-07-12 00:35:17 +0200
commit5fef32c1f59403ef2978942ac2838731b1406413 (patch)
treee906845aebe6bcccd65ed33ba314bf0ba3ce782f /src/lombok/eclipse/handlers/HandleSetter.java
parent12d44e59c57e4654a7c61f83baf606a39fbb8448 (diff)
downloadlombok-5fef32c1f59403ef2978942ac2838731b1406413.tar.gz
lombok-5fef32c1f59403ef2978942ac2838731b1406413.tar.bz2
lombok-5fef32c1f59403ef2978942ac2838731b1406413.zip
More fixes to avoid erroneous "getter/setter is already there, not generating it" warnings
when the getter/setter already there was in fact generated by lombok, and fixed a bug in eclipse where a boolean array's getter method would be called isFoo() instead of getFoo().
Diffstat (limited to 'src/lombok/eclipse/handlers/HandleSetter.java')
-rw-r--r--src/lombok/eclipse/handlers/HandleSetter.java13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/lombok/eclipse/handlers/HandleSetter.java b/src/lombok/eclipse/handlers/HandleSetter.java
index b08f298a..95eb0210 100644
--- a/src/lombok/eclipse/handlers/HandleSetter.java
+++ b/src/lombok/eclipse/handlers/HandleSetter.java
@@ -66,23 +66,16 @@ public class HandleSetter implements EclipseAnnotationHandler<Setter> {
* be a warning if its already there. The default access level is used.
*/
public void generateSetterForField(Node fieldNode, ASTNode pos) {
- AccessLevel level = AccessLevel.PUBLIC;
- Node errorNode = fieldNode;
- boolean whineIfExists = false;
-
for ( Node child : fieldNode.down() ) {
if ( child.getKind() == Kind.ANNOTATION ) {
if ( Eclipse.annotationTypeMatches(Setter.class, child) ) {
- level = Eclipse.createAnnotation(Setter.class, child).getInstance().value();
- errorNode = child;
- pos = child.get();
- whineIfExists = true;
- break;
+ //The annotation will make it happen, so we can skip it.
+ return;
}
}
}
- createSetterForField(level, fieldNode, errorNode, pos, whineIfExists);
+ createSetterForField(AccessLevel.PUBLIC, fieldNode, fieldNode, pos, false);
}
public boolean handle(AnnotationValues<Setter> annotation, Annotation ast, Node annotationNode) {