I think Mitch Christensen wrote: > I notice that if I utilize content assist to auto-complete a slot name > and type relatively fast, I end up with an incorrect slot name. >
When you implement auto-complete in an Eclipse editor, you create proposed completion objects that implement the ICompletionProposal interface. This is documented in several books, and that's what I've done. But I just did a quick bit of research and find that, in fact, if you stop there, then you do indeed see the problem you describe. There are several more interfaces names ICompletionProposalExtension, ICompletionProposalExtension2, and ICompletionProposalExtension3, which your proposals can implement. One of the things that implementing these extensions buys you is dealing this issue. So I know a path forward to fixing this. Thanks for taking the time to point this stuff out, Mitch. I'm going to have to write an Advanced Eclipse Plug-in Writing book! --------------------------------------------------------- Ernest Friedman-Hill Advanced Software Research Phone: (925) 294-2154 Sandia National Labs FAX: (925) 294-2234 PO Box 969, MS 9012 [EMAIL PROTECTED] Livermore, CA 94550 http://herzberg.ca.sandia.gov -------------------------------------------------------------------- To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]' in the BODY of a message to [EMAIL PROTECTED], NOT to the list (use your own address!) List problems? Notify [EMAIL PROTECTED] --------------------------------------------------------------------
