Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbvosburgh2008-02-19 06:01:54 +0000
committerbvosburgh2008-02-19 06:01:54 +0000
commit74b21c8678960cbf94efc11300241750fea978ba (patch)
tree32e248736e33ddc96659aad3e6d8f6564b0e464c /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java
parent2c99c6114645a8c577eeaa170a7c6e4167ad44af (diff)
downloadwebtools.dali-74b21c8678960cbf94efc11300241750fea978ba.tar.gz
webtools.dali-74b21c8678960cbf94efc11300241750fea978ba.tar.xz
webtools.dali-74b21c8678960cbf94efc11300241750fea978ba.zip
tweaked Java code-completion
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java
index 3bb28fe716..1a32759cba 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/context/java/JavaAttributeOverride.java
@@ -1,8 +1,8 @@
/*******************************************************************************
- * Copyright (c) 2007 Oracle. All rights reserved.
- * This program and the accompanying materials are made available under the terms of
- * the Eclipse Public License v1.0, which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/epl-v10.html.
+ * Copyright (c) 2007, 2008 Oracle. All rights reserved.
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0, which accompanies this distribution
+ * and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
@@ -101,12 +101,12 @@ public class JavaAttributeOverride extends JavaOverride<AttributeOverride>
}
@Override
- public Iterator<String> candidateValuesFor(int pos, Filter<String> filter, CompilationUnit astRoot) {
- Iterator<String> result = super.candidateValuesFor(pos, filter, astRoot);
+ public Iterator<String> javaCompletionProposals(int pos, Filter<String> filter, CompilationUnit astRoot) {
+ Iterator<String> result = super.javaCompletionProposals(pos, filter, astRoot);
if (result != null) {
return result;
}
- result = this.getColumn().candidateValuesFor(pos, filter, astRoot);
+ result = this.getColumn().javaCompletionProposals(pos, filter, astRoot);
if (result != null) {
return result;
}

Back to the top