Package com.nomagic.magicdraw.actions
Interface BrowserToolbarAMConfigurator
-
- All Superinterfaces:
ConfiguratorWithPriority
,PriorityProvider
,PriorityProvider
@OpenApiAll public interface BrowserToolbarAMConfigurator extends ConfiguratorWithPriority
Configurator for configuring managers for browser toolbar.
-
-
Field Summary
-
Fields inherited from interface com.nomagic.utils.PriorityProvider
HIGH_PRIORITY, LOW_PRIORITY, MEDIUM_PRIORITY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
configure(ActionsManager manager, Tree tree)
Method should add or remove actions for given browser context menu.default int
getPriority()
Returns priority of this configurator.
-
-
-
Method Detail
-
configure
void configure(ActionsManager manager, Tree tree)
Method should add or remove actions for given browser context menu.- Parameters:
manager
- manager to be configured.tree
- tree for which context menu actions will be configured.
-
getPriority
default int getPriority()
Description copied from interface:ConfiguratorWithPriority
Returns priority of this configurator. All configurators are sorted by priority before configuration. This is very important if one configurator expects input from other configurators. In such case configurator must have lower priority than others.- Specified by:
getPriority
in interfaceConfiguratorWithPriority
- Specified by:
getPriority
in interfacePriorityProvider
- Returns:
- priority of this configurator.
- See Also:
PriorityProvider.HIGH_PRIORITY
,PriorityProvider.MEDIUM_PRIORITY
,PriorityProvider.LOW_PRIORITY
-
-