Package | Description |
---|---|
org.netbeans.spi.editor.typinghooks |
The Typing Hooks SPI allows modules to intercept various key typed events
handled by the editor infrastructure.
|
Class and Description |
---|
CamelCaseInterceptor
An interceptor which is called when user use camel case action.
|
CamelCaseInterceptor.MutableContext
The context class providing information about the edited document, its
editor pane and the offset where the key event occurred.
|
DeletedTextInterceptor
An interceptor which is called when user deletes text from a document.
|
DeletedTextInterceptor.Context
The context class providing information about the edited document, its
editor pane and the offset where the delete key event occurred.
|
TypedBreakInterceptor
An interceptor which is called when a line break is typed into a document.
|
TypedBreakInterceptor.Context
The context class providing information about the edited document, its
editor pane, caret offset, line break insertion offset and text.
|
TypedBreakInterceptor.MutableContext
This context class allows to modify the insertion text and the caret position
after the text is inserted into a document.
|
TypedTextInterceptor
An interceptor which is called when text is typed into a document.
|
TypedTextInterceptor.Context
The context class providing information about the edited document, its
editor pane, insertion offset and text.
|
TypedTextInterceptor.MutableContext
This context class allows to modify the insertion text and the caret position
after the text is inserted into a document.
|