-
public interface ToolbarContributor
Implementations of this interface allow for new toolbar elements (buttons, combo boxes, etc.) being added into thePluggableChartContainer
toolbar.- Author:
- claudio.rosati@esss.se
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default boolean
isPrecededBySeparator()
Control
provide(PluggableChartContainer chartContainer)
Provides a new element for thePluggableChartContainer
toolbar.
-
-
-
Method Detail
-
isPrecededBySeparator
default boolean isPrecededBySeparator()
- Returns:
true
if the component provided byprovide(PluggableChartContainer)
needs to be preceded by aSeparator
one. By default this method returnsfalse
.
-
provide
Control provide(PluggableChartContainer chartContainer)
Provides a new element for thePluggableChartContainer
toolbar.- Parameters:
chartContainer
- ThePluggableChartContainer
whose toolbar must be contributed to.- Returns:
- A new
Control
to be added into thePluggableChartContainer
toolbar.
-
-