Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2016-06-10 13:59:54 +0000
committerManoj Palat2016-06-10 13:59:54 +0000
commitf423bd8740242fe78b48b52b7ce1f8495ba68b55 (patch)
tree11adf7b413c1f0587ae7d59f0f01e8b40406ff04
parent5afe2d105d736fd97ccfd0f4e2eaed1d95155b92 (diff)
downloadeclipse.jdt.core-f423bd8740242fe78b48b52b7ce1f8495ba68b55.tar.gz
eclipse.jdt.core-f423bd8740242fe78b48b52b7ce1f8495ba68b55.tar.xz
eclipse.jdt.core-f423bd8740242fe78b48b52b7ce1f8495ba68b55.zip
javadoc changes in api for module references - bug 495801
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionProposal.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionProposal.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionProposal.java
index fe3f371e4b..d696b02d75 100644
--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionProposal.java
+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionProposal.java
@@ -1183,7 +1183,7 @@ public class CompletionProposal {
}
/**
- * Returns the type signature or package name of the relevant
+ * Returns the type signature or package name or module name (1.9) of the relevant
* declaration in the context, or <code>null</code> if none.
* <p>
* This field is available for the following kinds of
@@ -1208,6 +1208,8 @@ public class CompletionProposal {
* <li><code>METHOD_DECLARATION</code> - type signature
* of the type that declares the method that is being
* implemented or overridden</li>
+ * <li><code>MODULE_REF</code> -
+ * name of the module that is referenced</li>
* <li><code>PACKAGE_REF</code> - dot-based package
* name of the package that is referenced</li>
* <li><code>TYPE_IMPORT</code> - dot-based package
@@ -1222,7 +1224,7 @@ public class CompletionProposal {
* returned.
* </p>
*
- * @return a type signature or a package name (depending
+ * @return a type signature or a package name or module name (1.9) (depending
* on the kind of completion), or <code>null</code> if none
* @see Signature
*/

Back to the top