Package com.microstrategy.web.app.addons
Class ReportSetResultWindowAddOn
- java.lang.Object
-
- com.microstrategy.web.app.addons.AbstractAppAddOn
-
- com.microstrategy.web.app.addons.ReportSetResultWindowAddOn
-
- All Implemented Interfaces:
AppAddOns
public class ReportSetResultWindowAddOn extends AbstractAppAddOn
Title: ReportSetResultWindowAddOn.
Description: This add on takes care of setting the required window settings on the report bean. This add on acts on all the report beans on a page.
- Since:
- MicroStrategy Web 9.0.0
-
-
Constructor Summary
Constructors Constructor Description ReportSetResultWindowAddOn()
-
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.void
setMaxCols(java.lang.String value)
Sets the max columns setting the report's window settingsvoid
setMaxRows(java.lang.String value)
Sets the max rows setting the report's window settingsvoid
setStartCol(java.lang.String value)
Sets the start column setting the report's window settingsvoid
setStartRow(java.lang.String value)
Sets the start row setting the report's window settings-
Methods inherited from class com.microstrategy.web.app.addons.AbstractAppAddOn
getRequestKeys, isCollectDataRequired, isIFrameRequest, postCollectData
-
-
-
-
Method Detail
-
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.
-
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.
-
setStartRow
public void setStartRow(java.lang.String value)
Sets the start row setting the report's window settings- Parameters:
value
- the start row setting
-
setStartCol
public void setStartCol(java.lang.String value)
Sets the start column setting the report's window settings- Parameters:
value
- the start column setting
-
setMaxRows
public void setMaxRows(java.lang.String value)
Sets the max rows setting the report's window settings- Parameters:
value
- the max rows setting
-
setMaxCols
public void setMaxCols(java.lang.String value)
Sets the max columns setting the report's window settings- Parameters:
value
- the max columns setting
-
-