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 theTransformContextused 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 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
-
getTransform
public Transform getTransform()
Description copied from interface:TransformContextProvides the current Transform instance.- Specified by:
getTransformin interfaceTransformContext
-
getWebComponent
public WebComponent getWebComponent()
Description copied from interface:TransformContextProvides the current WebComponent.- Specified by:
getWebComponentin interfaceTransformContext
-
getAppContext
public AppContext getAppContext()
Description copied from interface:TransformContextProvides an instance of the AppContext for the current request.- Specified by:
getAppContextin interfaceTransformContext
-
getContextMenuManager
public ContextMenuManager getContextMenuManager()
Description copied from interface:TransformContextProvides the ContextMenuManager from where the ContextMenus should be created.- Specified by:
getContextMenuManagerin interfaceTransformContext
-
-