I am Implementing a plugin to override the common java Proposals on eclipse. Can I override the select event on the content assist ? How?
I got a solution. I created a class that implements org.eclipse.jface.text.contentassist.ICompletionProposal and override the method "public void apply ( IDocument document) " as i want that the editor does when a proposal is selected. Then i used my implementation to create the completion proposals on the content assist processor.