Interface TransformContext
- 
- All Known Subinterfaces:
 ReportGridDisplayCell.Context
- All Known Implementing Classes:
 AbstractAppTransform.Context,AbstractFolderTransform.Context,AbstractReportGridDisplayCell.Context,AbstractSubscriptionsEditorTransform.RecipientContext,AlertsEditorTransform.RecipientContext,AllObjectBrowserTransform.Context,DataExplorerTransform.DisplayUnitContext,ExpressionGenericTransform.Context,InboxListXHTMLTransform.Context,OndemandContextMenusTransform,OndemandDrillContextMenusTransform,PageByTransform.Context,ReportGraphTransformImpl.GraphAreaContext,ReportGridTransformImpl.Context,SubscriptionEditTransform.RecipientContext,UserEntitiesTransform.Context,XDADataExplorerTransform.Context
public interface TransformContextThis interface is used by transforms to pass information to third-party classes that generate content using the transform information.
For example, a class that implements this interface is passed to context-menus to generate their corresponding items with the correct context information. It is also used by the ReportGridTransform to provide the context information to the ReportGridCell classes.
- Since:
 - MicroStrategy Web 8.0.1
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppContextgetAppContext()Provides an instance of the AppContext for the current request.ContextMenuManagergetContextMenuManager()Provides the ContextMenuManager from where the ContextMenus should be created.TransformgetTransform()Provides the current Transform instance.WebComponentgetWebComponent()Provides the current WebComponent. 
 - 
 
- 
- 
Method Detail
- 
getAppContext
AppContext getAppContext()
Provides an instance of the AppContext for the current request. 
- 
getTransform
Transform getTransform()
Provides the current Transform instance. 
- 
getWebComponent
WebComponent getWebComponent()
Provides the current WebComponent. 
- 
getContextMenuManager
ContextMenuManager getContextMenuManager()
Provides the ContextMenuManager from where the ContextMenus should be created. 
 - 
 
 -