Package cdc.impex.imports
Class VerboseWorkbookImporter
java.lang.Object
cdc.impex.imports.VerboseWorkbookImporter
- All Implemented Interfaces:
SheetImporter,WorkbookImporter
-
Field Summary
Fields inherited from interface cdc.impex.imports.WorkbookImporter
QUIET_VOID, VERBOSE_VOID -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbeginImport(String systemId, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) Invoked to notify the beginning of import.voidbeginSheetImport(String systemId, String sheetName, SheetTemplate template, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) Invoked to notify the beginning of the import of a sheet.voidInvoked to notify the end of import.voidendSheetImport(String systemId, String sheetName, SheetTemplateInstance templateInstance, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) Invoked to notify the end of the import of a sheet.voidimportHeader(SheetTemplateInstance templateInstance, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) voidInvoked to notify the import a row.
-
Constructor Details
-
VerboseWorkbookImporter
-
-
Method Details
-
beginImport
Description copied from interface:WorkbookImporterInvoked to notify the beginning of import.- Specified by:
beginImportin interfaceWorkbookImporter- Parameters:
systemId- The system if of the imported data.issuesHandler- The issues handler that should be used by the application to generate new issues.
-
beginSheetImport
public void beginSheetImport(String systemId, String sheetName, SheetTemplate template, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) Description copied from interface:SheetImporterInvoked to notify the beginning of the import of a sheet.- Specified by:
beginSheetImportin interfaceSheetImporter- Parameters:
systemId- The system if of the imported data.sheetName- The sheet name.template- The sheet template associated to this import.issuesHandler- The issues handler that should be used by the application to generate new issues.
-
importHeader
public void importHeader(SheetTemplateInstance templateInstance, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) - Specified by:
importHeaderin interfaceSheetImporter
-
importRow
Description copied from interface:SheetImporterInvoked to notify the import a row.- Specified by:
importRowin interfaceSheetImporter- Parameters:
row- The imported row.issuesHandler- The issues handler that should be used by the application to generate new issues.
-
endSheetImport
public void endSheetImport(String systemId, String sheetName, SheetTemplateInstance templateInstance, cdc.issues.IssuesHandler<cdc.issues.Issue> issuesHandler) Description copied from interface:SheetImporterInvoked to notify the end of the import of a sheet.- Specified by:
endSheetImportin interfaceSheetImporter- Parameters:
systemId- The system if of the imported data.sheetName- The sheet name.templateInstance- The sheet template instance associated to this import.issuesHandler- The issues handler that should be used by the application to generate new issues.
-
endImport
Description copied from interface:WorkbookImporterInvoked to notify the end of import.- Specified by:
endImportin interfaceWorkbookImporter- Parameters:
systemId- The system if of the imported data.issuesHandler- The issues handler that should be used by the application to generate new issues.
-