public interface MockDSExportCallback
Modifier and Type | Method and Description |
---|---|
void |
execute(java.lang.String allDSData,
java.lang.String[] perDSData)
Callback fired upon successful completion of
Reify.getMockDS() or
Reify.showMockDS() : Output for all DataSources together is reported as the single string parameter
allDSData . |
void execute(java.lang.String allDSData, java.lang.String[] perDSData)
Reify.getMockDS()
or
Reify.showMockDS()
:DataSources
together is reported as the single string parameter
allDSData
. When using format
: "reifyCSV",
output for separate DataSources is separated by a special marker. DataSource
as a separate string array element is also available as the parameter
perDSData
, ordered to match the dsNames
parameter in Reify.getMockDS()
or Reify.showMockDS()
. Note that in the case of Reify.showMockDS()
, the callback is fired after the window is closed, not when it's populated.
allDSData
- concatenated output for all DataSources
perDSData
- same output but delivered as a per-DS array