Package docking.action
Interface DockingActionProviderIf
Deprecated, for removal: This API element is subject to removal in a future version.
An interface for objects (really Components) to implement that signals they provide actions
for the Docking environment. This interface will be called when the implementor is the source
of a Java event, like a MouseEvent.
As an example, a JTable that wishes to provide popup menu actions can implement this interface. When the user right-clicks on said table, then Docking system will ask this object for its actions. Further, in this example, the actions given will be inserted into the popup menu that is shown.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Returns actions that are compatible with the given context.
-
Method Details
-
getDockingActions
List<DockingActionIf> getDockingActions()Deprecated, for removal: This API element is subject to removal in a future version.Returns actions that are compatible with the given context.- Returns:
- the actions
-
Tool