Interface IMappingProcessorCallback
- All Known Implementing Classes:
NamedMappingProcessorCallback
,SSSOMTInferCardinalityFunction
public interface IMappingProcessorCallback
Represents a custom processing step that can be called when applying rules to
a mapping set.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(IMappingFilter filter, List<Mapping> mappings) Applies a custom process to a set of mappings.
-
Method Details
-
process
Applies a custom process to a set of mappings. This method is called byMappingProcessor.process(List)
before applying the preprocessor and/or the generator of the current rule.- Parameters:
filter
- The filter of the rule currently being applied. May benull
.mappings
- The current set of mappings.
-