I have written my own check extending AbstractFileSetCheck class. The code actually should read all files with extension as ".properties" present in the project directory and do some checks and throw appropriate checkstyle warnings.
In my checkclass "PropetiesCheck", i have actually overridden process(File[] afile) method to read a properties file to do necessary check. Now i am not sure what files will the process() method take as input.
I have actually added this check as module under the "Checker" module in the configuration XML file.
But now after integrating the check into my project, i dont get any checkstyle violation messages which is expected. (eventhough i dont get any build errors)
Can someone please help me by sending some info on process() method and what files it takes as input, when i extend AbstractFileSetCheck in my check and override process() method?