View | Details | Raw Unified | Return to bug 207465
Collapse All | Expand All

(-)model/org/eclipse/jdt/core/CompletionRequestor.java (+3 lines)
Lines 177-182 Link Here
177
	 * Sets whether a proposal of a given kind with a required proposal
177
	 * Sets whether a proposal of a given kind with a required proposal
178
	 * of the given kind is allowed.
178
	 * of the given kind is allowed.
179
	 * 
179
	 * 
180
	 * A required proposal of a given kind is proposed even if {@link #isIgnored(int)}
181
	 * return <code>true</code> for that kind.
182
	 * 
180
	 * Currently only a subset of kinds support required proposals. To see what combinations
183
	 * Currently only a subset of kinds support required proposals. To see what combinations
181
	 * are supported you must look at {@link CompletionProposal#getRequiredProposals()}
184
	 * are supported you must look at {@link CompletionProposal#getRequiredProposals()}
182
	 * documentation.
185
	 * documentation.
(-)model/org/eclipse/jdt/core/CompletionProposal.java (+4 lines)
Lines 1866-1871 Link Here
1866
	 * only kinds which are in this list to avoid unexpected results in the future.
1866
	 * only kinds which are in this list to avoid unexpected results in the future.
1867
	 * </p>
1867
	 * </p>
1868
	 * <p>
1868
	 * <p>
1869
	 * A required proposal of a given kind is proposed even if {@link CompletionRequestor#isIgnored(int)}
1870
	 * return <code>true</code> for that kind.
1871
	 * </p>
1872
	 * <p>
1869
	 * A required completion proposal cannot have required completion proposals.
1873
	 * A required completion proposal cannot have required completion proposals.
1870
	 * </p>
1874
	 * </p>
1871
	 * 
1875
	 * 

Return to bug 207465