Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [Dltk-dev] Creating org.eclipse.dltk.core.CompletionProposal

Alex Panchenko wrote:
Hi Clemens,

CompletionProposal has static factory method:

public static CompletionProposal create(int kind, int completionOffset) {
	return new CompletionProposal(kind, completionOffset);
}

This is the method used by ScriptCompletionEngine.createProposal().

It should work for you.

Ah, silly me for not seeing that. :/

Thank you very much Alex.



With best regards

Clemens Anhuth



Back to the top