Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » customizeDocumentCommand in IAutoEditStrategy only called on backspace
customizeDocumentCommand in IAutoEditStrategy only called on backspace [message #604045] Sat, 09 January 2010 15:32
Henrik  is currently offline Henrik Friend
Messages: 2
Registered: January 2010
Junior Member
Hi,

I am currently working on a custom editor plugin. I've overwritten getAutoEditStrategies like this:


public IAutoEditStrategy[] getAutoEditStrategies(
ISourceViewer sourceViewer, String contentType) {
return new IAutoEditStrategy[] { new KRLAutoEditStrategy() };
}


and written a minimal Strategy like this:


public class KRLAutoEditStrategy implements IAutoEditStrategy {
public void customizeDocumentCommand(IDocument d, DocumentCommand c) {
System.out.println("Called.");
}


The weird thing is, that customizeDocumentCommand is only called when I press backspace in the editor. Does anyone know what I am missing?

Thanks so much!
Henrik
Previous Topic:customizeDocumentCommand in IAutoEditStrategy only called on backspace
Next Topic:"Unsatisfied version constraint" after adding bundle
Goto Forum:
  


Current Time: Wed Apr 24 23:16:54 GMT 2024

Powered by FUDForum. Page generated in 0.03031 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top