Interface ConvertedFilesReport
-
- All Known Subinterfaces:
ConvertedFilesReportEx
public interface ConvertedFilesReport
Allows converters to report config files they affected. To acquire a report, converter should implement theConvertedFilesReporter
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addConvertedFile(File file)
Reports that the specified file was affected (created/changed/removed) by converter.
-
-
-
Method Detail
-
addConvertedFile
void addConvertedFile(@NotNull File file)
Reports that the specified file was affected (created/changed/removed) by converter.- Parameters:
file
- file to report
-
-