use of org.sonarsource.sonarlint.plugin.api.module.file.ModuleFileEvent in project sonarlint-core by SonarSource.
the class ModuleFileEventNotifier method fireModuleFileEvent.
public void fireModuleFileEvent(ClientModuleFileEvent event) {
ModuleFileEvent apiEvent = DefaultModuleFileEvent.of(inputFileBuilder.create(event.target()), event.type());
listeners.forEach(l -> tryFireModuleFileEvent(l, apiEvent));
}
Aggregations