Package com.e1c.g5.v8.dt.check.context
Interface OnLanguageResourceChangesContextCollector
-
public interface OnLanguageResourceChangesContextCollector
The check context collector for the BSL language module changes. Being called in case if some language module resource is changed. May be used to schedule complex checking scenarious (like checking related model objects in case of module-only changes and so on). This collector should be registered via theICheckDefinition.setLanguageResourceChangeContextCollector(com.e1c.g5.v8.dt.check.context.OnLanguageResourceChangesContextCollector)
method during theICheck.configureContextCollector(com.e1c.g5.v8.dt.check.ICheckDefinition)
stage.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
collectContextOnResourceChanges(String resourcePath, CheckContextCollectingSession contextSession)
Collects the context of checks in case if some of language module resources are changed
-
-
-
Method Detail
-
collectContextOnResourceChanges
void collectContextOnResourceChanges(String resourcePath, CheckContextCollectingSession contextSession)
Collects the context of checks in case if some of language module resources are changed- Parameters:
resourcePath
- The path of the changed language module resource. May not benull
contextSession
- The check context collecting session. May not benull
-
-