Interface IMappingProcessorCallback
-
- All Known Implementing Classes:
NamedMappingProcessorCallback,SSSOMTInferCardinalityFunction
public interface IMappingProcessorCallbackRepresents a custom processing step that can be called when applying rules to a mapping set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(IMappingFilter filter, List<Mapping> mappings)Applies a custom process to a set of mappings.
-
-
-
Method Detail
-
process
void process(IMappingFilter filter, List<Mapping> mappings)
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.
-
-