aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/eclipse/handlers/PKG.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2009-08-01 02:10:29 +0200
committerRoel Spilker <r.spilker@gmail.com>2009-08-01 02:10:29 +0200
commitc4d97b008afc85e495784929c312c6828aefde1d (patch)
tree920c80009a00c0a27e03c8f2aeaae459c28d7ad4 /src/lombok/eclipse/handlers/PKG.java
parentf2c837bb47771a7eba5ad5a885af162d8d133559 (diff)
downloadlombok-c4d97b008afc85e495784929c312c6828aefde1d.tar.gz
lombok-c4d97b008afc85e495784929c312c6828aefde1d.tar.bz2
lombok-c4d97b008afc85e495784929c312c6828aefde1d.zip
Moved the check to see if a variable is null to the PKG utility classes
Diffstat (limited to 'src/lombok/eclipse/handlers/PKG.java')
-rw-r--r--src/lombok/eclipse/handlers/PKG.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lombok/eclipse/handlers/PKG.java b/src/lombok/eclipse/handlers/PKG.java
index 6d524e8c..2eae1edf 100644
--- a/src/lombok/eclipse/handlers/PKG.java
+++ b/src/lombok/eclipse/handlers/PKG.java
@@ -21,6 +21,8 @@
*/
package lombok.eclipse.handlers;
+import static lombok.eclipse.Eclipse.fromQualifiedName;
+
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.List;
@@ -31,9 +33,21 @@ import lombok.eclipse.EclipseAST;
import org.eclipse.jdt.internal.compiler.ast.ASTNode;
import org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration;
+import org.eclipse.jdt.internal.compiler.ast.AbstractVariableDeclaration;
+import org.eclipse.jdt.internal.compiler.ast.AllocationExpression;
import org.eclipse.jdt.internal.compiler.ast.Annotation;
import org.eclipse.jdt.internal.compiler.ast.ConstructorDeclaration;
+import org.eclipse.jdt.internal.compiler.ast.EqualExpression;
+import org.eclipse.jdt.internal.compiler.ast.Expression;
import org.eclipse.jdt.internal.compiler.ast.FieldDeclaration;
+import org.eclipse.jdt.internal.compiler.ast.IfStatement;
+import org.eclipse.jdt.internal.compiler.ast.NullLiteral;
+import org.eclipse.jdt.internal.compiler.ast.OperatorIds;
+import org.eclipse.jdt.internal.compiler.ast.QualifiedTypeReference;
+import org.eclipse.jdt.internal.compiler.ast.SingleNameReference;
+import org.eclipse.jdt.internal.compiler.ast.Statement;
+import org.eclipse.jdt.internal.compiler.ast.StringLiteral;
+import org.eclipse.jdt.internal.compiler.ast.ThrowStatement;
import org.eclipse.jdt.internal.compiler.ast.TypeDeclaration;
import org.eclipse.jdt.internal.compiler.ast.TypeReference;
@@ -231,4 +245,15 @@ class PKG {
}
return result.toArray(new Annotation[0]);
}
+
+
+ static Statement generateNullCheck(AbstractVariableDeclaration variable) {
+ AllocationExpression exception = new AllocationExpression();
+ exception.type = new QualifiedTypeReference(fromQualifiedName("java.lang.NullPointerException"), new long[]{0, 0, 0});
+ exception.arguments = new Expression[] { new StringLiteral(variable.name, 0, variable.name.length - 1, 0)};
+ ThrowStatement throwStatement = new ThrowStatement(exception, 0, 0);
+
+ return new IfStatement(new EqualExpression(new SingleNameReference(variable.name, 0),
+ new NullLiteral(0, 0), OperatorIds.EQUAL_EQUAL), throwStatement, 0, 0);
+ }
}