Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2016-06-10 12:46:53 +0000
committerManoj Palat2016-06-10 12:46:53 +0000
commitb2d70fc49d7cd20c5e22c5ff840977725ef16de5 (patch)
tree70bcf297d218a88db270ffbcd2d4ead20ff7c56c
parent86858dbb92e3c3c7f045572da23f0779074749a2 (diff)
downloadeclipse.jdt.core-b2d70fc49d7cd20c5e22c5ff840977725ef16de5.tar.gz
eclipse.jdt.core-b2d70fc49d7cd20c5e22c5ff840977725ef16de5.tar.xz
eclipse.jdt.core-b2d70fc49d7cd20c5e22c5ff840977725ef16de5.zip
javadoc changes for bug 495801 [1.9] [code completion] requires module
reference completion
-rw-r--r--org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java10
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionProposal.java10
2 files changed, 14 insertions, 6 deletions
diff --git a/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java b/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java
index 898d630e3e..9c6fbe833d 100644
--- a/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java
+++ b/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/InternalCompletionProposal.java
@@ -1,10 +1,14 @@
/*******************************************************************************
- * Copyright (c) 2004, 2015 IBM Corporation and others.
+ * Copyright (c) 2004, 2016 IBM Corporation and others.
* 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
*
+ * This is an implementation of an early-draft specification developed under the Java
+ * Community Process (JCP) and is made available for testing and evaluation purposes
+ * only. The code is not compatible with any specification of the JCP.
+ *
* Contributors:
* IBM Corporation - initial API and implementation
* Andreas Magnusson <andreas.ch.magnusson@gmail.com>- contribution for bug 151500
@@ -835,7 +839,7 @@ public class InternalCompletionProposal extends CompletionProposal {
}
/**
- * Sets the type or package signature of the relevant
+ * Sets the type or package or module(1.9) signature of the relevant
* declaration in the context, or <code>null</code> if none.
* <p>
* If not set, defaults to none.
@@ -845,7 +849,7 @@ public class InternalCompletionProposal extends CompletionProposal {
* its properties; this method is not intended to be used by other clients.
* </p>
*
- * @param signature the type or package signature, or
+ * @param signature the type or package or module(1.9) signature, or
* <code>null</code> if none
*/
public void setDeclarationSignature(char[] signature) {
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 0f429108b0..fe3f371e4b 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
@@ -1,10 +1,14 @@
/*******************************************************************************
- * Copyright (c) 2004, 2011 IBM Corporation and others.
+ * Copyright (c) 2004, 2016 IBM Corporation and others.
* 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
*
+ * This is an implementation of an early-draft specification developed under the Java
+ * Community Process (JCP) and is made available for testing and evaluation purposes
+ * only. The code is not compatible with any specification of the JCP.
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -1254,7 +1258,7 @@ public class CompletionProposal {
}
/**
- * Sets the type or package signature of the relevant
+ * Sets the type or package or module(1.9) signature of the relevant
* declaration in the context, or <code>null</code> if none.
* <p>
* If not set, defaults to none.
@@ -1264,7 +1268,7 @@ public class CompletionProposal {
* its properties; this method is not intended to be used by other clients.
* </p>
*
- * @param signature the type or package signature, or
+ * @param signature the type or package or module(1.9) signature, or
* <code>null</code> if none
*/
public void setDeclarationSignature(char[] signature) {

Back to the top