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 the
ICheckDefinition.setLanguageResourceChangeContextCollector(com.e1c.g5.v8.dt.check.context.OnLanguageResourceChangesContextCollector)
method during the ICheck.configureContextCollector(com.e1c.g5.v8.dt.check.ICheckDefinition)
stage.-
Method Summary
Modifier and TypeMethodDescriptionvoid
collectContextOnResourceChanges
(String resourcePath, CheckContextCollectingSession contextSession) Collects the context of checks in case if some of language module resources are changed
-
Method Details
-
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
-