interface FileAction {
  void perform(File file);
}
private static void applyActionOnFiles(File dir,String prefix,FileAction action) {
  ...
}