Package | Description |
---|---|
org.netbeans.api.visual.action |
This package contains
ActionFactory class which is factory of all built-in widget-actions provided by the library. |
Modifier and Type | Interface and Description |
---|---|
static interface |
InplaceEditorProvider.TypedEditorController
This is an interface that extends EditorController for ability to query for invocation type.
|
Modifier and Type | Method and Description |
---|---|
static InplaceEditorProvider.EditorController |
ActionFactory.getInplaceEditorController(WidgetAction inplaceEditorAction)
Returns an editor controller for a specified inplace-editor-action created by
ActionFactory.createInplaceEditorAction method. |
Modifier and Type | Method and Description |
---|---|
C |
InplaceEditorProvider.createEditorComponent(InplaceEditorProvider.EditorController controller,
Widget widget)
Creates an in-place editor component for a specified widget.
|
EnumSet<InplaceEditorProvider.ExpansionDirection> |
InplaceEditorProvider.getExpansionDirections(InplaceEditorProvider.EditorController controller,
Widget widget,
C editor)
Called to obtain directions where an editor component can expand to.
|
Rectangle |
InplaceEditorProvider.getInitialEditorComponentBounds(InplaceEditorProvider.EditorController controller,
Widget widget,
C editor,
Rectangle viewBounds)
Called to obtain the initial boundary editor component in view coordination system.
|
void |
InplaceEditorProvider.notifyClosing(InplaceEditorProvider.EditorController controller,
Widget widget,
C editor,
boolean commit)
Called to notify about closing an in-place editor.
|
void |
InplaceEditorProvider.notifyOpened(InplaceEditorProvider.EditorController controller,
Widget widget,
C editor)
Called to notify about opening an in-place editor.
|