Interface ComposedContextMenuBuilder
-
- All Known Subinterfaces:
PageByHyperLinkNavigation.HyperLinkNavigationContextMenuBuilder,ReportCellAttributeForms.AttributeFormsContextMenuBuilder,ReportCellDrill.DrillContextMenuBuilder,ReportCellHyperLinkNavigation.HyperLinkNavigationContextMenuBuilder,ReportCellPercentForEachMetric.InsertMetricContextMenuBuilder,ReportCellRankMetric.InsertMetricContextMenuBuilder,ReportCellTransformationMetric.InsertMetricContextMenuBuilder
- All Known Implementing Classes:
PageByHyperLinkNavigation.AbstractHyperLinkNavigationContextMenuBuilder,PageByHyperLinkNavigation.InvalidHyperLinkNavigationContextMenuBuilder,ReportCellAttributeForms.AbstractAttributeFormsContextMenuBuilder,ReportCellAttributeForms.InvalidAttributeFormsContextMenuBuilder,ReportCellDrill.AbstractDrillContextMenuBuilder,ReportCellDrill.HeaderDrillContextMenuBuilder,ReportCellDrill.InvalidDrillContextMenuBuilder,ReportCellDrill.RowValueDrillContextMenuBuilder,ReportCellDrill.TitleDrillContextMenuBuilder,ReportCellHyperLinkNavigation.AbstractHyperLinkNavigationContextMenuBuilder,ReportCellHyperLinkNavigation.InvalidHyperLinkNavigationContextMenuBuilder,ReportCellPercentForEachMetric.AbstractInsertMetricContextMenuBuilder,ReportCellPercentForEachMetric.InvalidInsertMetricContextMenuBuilder,ReportCellRankMetric.AbstractInsertMetricContextMenuBuilder,ReportCellRankMetric.InvalidInsertMetricContextMenuBuilder,ReportCellTransformationMetric.AbstractInsertMetricContextMenuBuilder,ReportCellTransformationMetric.InvalidInsertMetricContextMenuBuilder,ReportGraphDrill.GraphAreaContextMenuBuilder,ReportPageByCellDrill.TitleDrillContextMenuBuilder
public interface ComposedContextMenuBuilderHelper builder interface that allows generating the different the sub menu options that shall be displayed to the user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContextMenugenerateSubMenu()Method that generates aContextMenuinstance with all the possible sub menu options enabled for the report cell provided.booleanisIframeEnabled()booleanisValid()voidsetIframeEnabled(boolean value)Define if the options to generate will be iframe enabled or not
-
-
-
Method Detail
-
generateSubMenu
ContextMenu generateSubMenu()
Method that generates aContextMenuinstance with all the possible sub menu options enabled for the report cell provided.- Returns:
ContextMenuinstance with the drilling options that can be displayed to the user
-
isValid
boolean isValid()
- Returns:
- boolean value that indicates if drilling on the current cell shall be enabled to the user
-
setIframeEnabled
void setIframeEnabled(boolean value)
Define if the options to generate will be iframe enabled or not- Parameters:
value- boolean value indicating if the options to generate will be iframe enabled or not
-
isIframeEnabled
boolean isIframeEnabled()
- Returns:
- boolean value indicating if the options generated by this builder are iframe enabled or not
-
-