Class AbstractAppTransform.Context
- java.lang.Object
-
- com.microstrategy.web.app.transforms.AbstractAppTransform.Context
-
- All Implemented Interfaces:
TransformContext
- Direct Known Subclasses:
AbstractFolderTransform.Context
,AbstractSubscriptionsEditorTransform.RecipientContext
,AlertsEditorTransform.RecipientContext
,AllObjectBrowserTransform.Context
,DataExplorerTransform.DisplayUnitContext
,ExpressionGenericTransform.Context
,InboxListXHTMLTransform.Context
,PageByTransform.Context
,ReportGraphTransformImpl.GraphAreaContext
,ReportGridTransformImpl.Context
,SubscriptionEditTransform.RecipientContext
,UserEntitiesTransform.Context
,XDADataExplorerTransform.Context
- Enclosing class:
- AbstractAppTransform
public class AbstractAppTransform.Context extends java.lang.Object implements TransformContext
This is the implementation of theTransformContext
used by this Transform. It is used to pass information to third-party classes that generate content using the transform information. In particular it's used to pass information to context-menus so they can populate the actions accordingly.- Since:
- MicroStrategy Web 8.0.1
-
-
Constructor Summary
Constructors Constructor Description Context()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppContext
getAppContext()
Provides an instance of the AppContext for the current request.ContextMenuManager
getContextMenuManager()
Provides the ContextMenuManager from where the ContextMenus should be created.Transform
getTransform()
Provides the current Transform instance.WebComponent
getWebComponent()
Provides the current WebComponent.
-
-
-
Method Detail
-
getTransform
public Transform getTransform()
Description copied from interface:TransformContext
Provides the current Transform instance.- Specified by:
getTransform
in interfaceTransformContext
-
getWebComponent
public WebComponent getWebComponent()
Description copied from interface:TransformContext
Provides the current WebComponent.- Specified by:
getWebComponent
in interfaceTransformContext
-
getAppContext
public AppContext getAppContext()
Description copied from interface:TransformContext
Provides an instance of the AppContext for the current request.- Specified by:
getAppContext
in interfaceTransformContext
-
getContextMenuManager
public ContextMenuManager getContextMenuManager()
Description copied from interface:TransformContext
Provides the ContextMenuManager from where the ContextMenus should be created.- Specified by:
getContextMenuManager
in interfaceTransformContext
-
-