Package com.microstrategy.web.app.addons
Class DebugFlagsAddOn
- java.lang.Object
-
- com.microstrategy.web.app.addons.AbstractAppAddOn
-
- com.microstrategy.web.app.addons.DebugFlagsAddOn
-
- All Implemented Interfaces:
AppAddOns
public class DebugFlagsAddOn extends AbstractAppAddOn
-
-
Constructor Summary
Constructors Constructor Description DebugFlagsAddOn()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAddOnDescription()
This method describes the tasks performed by the AddOn.void
preCollectData(PageComponent page)
This is the main method of the add on which executes the add on.-
Methods inherited from class com.microstrategy.web.app.addons.AbstractAppAddOn
getRequestKeys, isCollectDataRequired, isIFrameRequest, postCollectData
-
-
-
-
Method Detail
-
getAddOnDescription
public java.lang.String getAddOnDescription()
Description copied from interface:AppAddOns
This method describes the tasks performed by the AddOn.- Returns:
- The tasks which the Add On performs. This needs to be as descriptive as possible.
-
preCollectData
public void preCollectData(PageComponent page)
Description copied from interface:AppAddOns
This is the main method of the add on which executes the add on. This has to be a static method.- Specified by:
preCollectData
in interfaceAppAddOns
- Overrides:
preCollectData
in classAbstractAppAddOn
- Parameters:
page
- is the PageComponent.
-
-