Interface URLChooserToolbarExtension
-
- All Superinterfaces:
PluginExtension
@API(type=EXTENDABLE, src=PUBLIC) public interface URLChooserToolbarExtension extends PluginExtension
URL chooser toolbar extension. Provides toolbar icon and toolbar tooltip for the button to be inserted in the "File" toolbar. When pressing the button, theURLChooserPluginExtension
'schooseURL()
will be invoked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.swing.Icon
getToolbarIcon()
Get the toolbar icon.java.lang.String
getToolbarTooltip()
Get the tooltip to be placed on the toolbar button.
-
-
-
Method Detail
-
getToolbarIcon
javax.swing.Icon getToolbarIcon()
Get the toolbar icon. The action will be placed in the "File" toolbar. Returnnull
if the action should not be included in the toolbar.- Returns:
- The toolbar icon or
null
.
-
getToolbarTooltip
java.lang.String getToolbarTooltip()
Get the tooltip to be placed on the toolbar button. If the tooltip isnull
but there is an icon provided, theURLChooserPluginExtension.getMenuName()
will be used instead.- Returns:
- The toolbar tooltip or
null
.
-
-