Interface CsvCreatorCustomizer
public interface CsvCreatorCustomizer
This interface can be used to customize the csv creation
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidbeforeCheckingSyntax(com.smeup.kokos.sdk.rpgle.syntaxchecker.ProgramDefinition programDefinition) static CsvCreatorCustomizerCalled on draw header.onDrawRow(com.smeup.rpgparser.execution.ErrorEvent errorEvent) Called on draw row.
-
Method Details
-
beforeCheckingSyntax
default void beforeCheckingSyntax(com.smeup.kokos.sdk.rpgle.syntaxchecker.ProgramDefinition programDefinition) -
onDrawHeader
Called on draw header. It allows adding further header fields- Returns:
- the further header fields. Default empty list
-
onDrawRow
Called on draw row. It allows adding further information related the event- Parameters:
errorEvent- Current event- Returns:
- the further information. Default empty list
-
createDefaultInstance
-