- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
protected void generateReport(ArchiveMetadata archive, File reportDirectory) { if (archive.getName() == null) { LOG.info("Processing reports for: " + archive.getFilePointer().toString()); } else { LOG.info("Processing reports for: "+archive.getName()); } if( this.reporters != null ) { for(Reporter reporter : this.reporters) { reporter.process(archive, reportDirectory); } } if( this.reporters == null || this.reporters.size() == 0 ){ LOG.warn("No reporters are currently registered."); } LOG.info("Reporting complete."); }