Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Fullbright2013-05-14 18:48:09 +0000
committerPaul Fullbright2013-05-15 15:40:47 +0000
commit316643d10348cd5e402066221279c76384bed685 (patch)
treeca4a7eb9c24644a1e8fc09e3592101022ee1e1bf
parent5bbbd6f490d0f79cef9af28ffb302ee4dfc5be10 (diff)
downloadwebtools.dali-316643d10348cd5e402066221279c76384bed685.tar.gz
webtools.dali-316643d10348cd5e402066221279c76384bed685.tar.xz
webtools.dali-316643d10348cd5e402066221279c76384bed685.zip
Correctly build Access value field (bug 390124)
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa2/resource/java/binary/BinaryAccessAnnotation2_0.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa2/resource/java/binary/BinaryAccessAnnotation2_0.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa2/resource/java/binary/BinaryAccessAnnotation2_0.java
index a5be537765..3959e6d7a9 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa2/resource/java/binary/BinaryAccessAnnotation2_0.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/jpa2/resource/java/binary/BinaryAccessAnnotation2_0.java
@@ -66,7 +66,7 @@ public final class BinaryAccessAnnotation2_0
}
private AccessType buildValue() {
- return AccessType.fromJavaAnnotationValue(this.getJdtMemberValue(JPA2_0.ACCESS));
+ return AccessType.fromJavaAnnotationValue(this.getJdtMemberValue(JPA2_0.ACCESS__VALUE));
}
public TextRange getValueTextRange() {

Back to the top