com.sas.commands.export
Interface OLAPExportCommandV2Interface
- All Superinterfaces:
- BaseEntityValueInterface, OLAPExportCommandInterface
- All Known Implementing Classes:
- BaseOLAPExportCommand, OLAPExportToCSVCommand, OLAPExportToExcelXMLCommand, OLAPExportToHTMLCommand, OLAPExportToTabSeparatedCommand
public interface OLAPExportCommandV2Interface
- extends OLAPExportCommandInterface
Represents a command for exporting headers and footers together multidimensional data
- Since:
- 3.1
|
Method Summary |
void |
execute(int startRow,
int nRows,
boolean isRawData,
boolean repeatLabels,
java.lang.String[] headers,
java.lang.String[] footers)
Executes the command |
void |
execute(java.lang.Object out,
int startRow,
int nRows,
boolean isRawData,
boolean repeatLabels,
java.lang.String[] headers,
java.lang.String[] footers)
Executes the command |
execute
void execute(int startRow,
int nRows,
boolean isRawData,
boolean repeatLabels,
java.lang.String[] headers,
java.lang.String[] footers)
- Executes the command
- Parameters:
startRow - the index (in the model) of the first row of data to exportnRows - the number of rows of data to exportisRawData - true if non formatted data have to be exported, false if formatted data have to be exportedrepeatLabels - true if the row labels have to be repeated in the exported stream when the OLAP model is expanded, false otherwiseheaders - the headers to export above the data, each header on a separate rowfooters - the footers to export below the data, each footer on a separate row
execute
void execute(java.lang.Object out,
int startRow,
int nRows,
boolean isRawData,
boolean repeatLabels,
java.lang.String[] headers,
java.lang.String[] footers)
- Executes the command
- Parameters:
out - the output object where to write the exported data to (example a ServletResponse or a Writer)startRow - the index (in the model) of the first row of data to exportnRows - the number of rows of data to exportisRawData - true if non formatted data have to be exported, false if formatted data have to be exportedrepeatLabels - true if the row labels have to be repeated in the exported stream when the OLAP model is expanded, false otherwiseheaders - the headers to export above the data, each header on a separate rowfooters - the footers to export below the data, each footer on a separate row
Copyright © 2009 SAS Institute Inc. All Rights Reserved.