Package | Description |
---|---|
org.netbeans.spi.editor.typinghooks |
The Typing Hooks SPI allows modules to intercept various key typed events
handled by the editor infrastructure.
|
Modifier and Type | Method and Description |
---|---|
void |
DeletedTextInterceptor.afterRemove(DeletedTextInterceptor.Context context)
This method is called after text is removed from a document and its editor's
caret is adjusted.
|
boolean |
DeletedTextInterceptor.beforeRemove(DeletedTextInterceptor.Context context)
This method is called before any text is removed from a document.
|
void |
DeletedTextInterceptor.cancelled(DeletedTextInterceptor.Context context)
This method is called when the normal processing is terminated by some
interceptor's
beforeRemove method. |
void |
DeletedTextInterceptor.remove(DeletedTextInterceptor.Context context)
This method is called immediately after the text is removed from a document.
|