本文整理汇总了Java中org.eclipse.jdt.internal.codeassist.InternalCompletionProposal类的典型用法代码示例。如果您正苦于以下问题:Java InternalCompletionProposal类的具体用法?Java InternalCompletionProposal怎么用?Java InternalCompletionProposal使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
InternalCompletionProposal类属于org.eclipse.jdt.internal.codeassist包,在下文中一共展示了InternalCompletionProposal类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: copyNameLookupAndCompletionEngine
import org.eclipse.jdt.internal.codeassist.InternalCompletionProposal; //导入依赖的package包/类
private static void copyNameLookupAndCompletionEngine(CompletionProposalCollector completionProposalCollector, IJavaCompletionProposal proposal,
InternalCompletionProposal newProposal) {
try {
InternalCompletionContext context = (InternalCompletionContext) Reflection.contextField.get(completionProposalCollector);
InternalExtendedCompletionContext extendedContext = (InternalExtendedCompletionContext) Reflection.extendedContextField.get(context);
LookupEnvironment lookupEnvironment = (LookupEnvironment) Reflection.lookupEnvironmentField.get(extendedContext);
Reflection.nameLookupField.set(newProposal, ((SearchableEnvironment) lookupEnvironment.nameEnvironment).nameLookup);
Reflection.completionEngineField.set(newProposal, lookupEnvironment.typeRequestor);
} catch (IllegalAccessException ignore) {
// ignore
}
}
示例2: create
import org.eclipse.jdt.internal.codeassist.InternalCompletionProposal; //导入依赖的package包/类
/**
* Creates a basic completion proposal. All instance
* field have plausible default values unless otherwise noted.
* <p>
* Note that the constructors for this class are internal to the
* Java model implementation. Clients cannot directly create
* CompletionProposal objects.
* </p>
*
* @param kind one of the kind constants declared on this class
* @param completionOffset original offset of code completion request
* @return a new completion proposal
*/
public static CompletionProposal create(int kind, int completionOffset) {
return new InternalCompletionProposal(kind, completionOffset);
}