use of org.eclipse.titanium.markers.export.SingleCsvProblemExporter in project titan.EclipsePlug-ins by eclipse.
the class SonarDataExporter method exportCodeSmells.
private void exportCodeSmells(final URI exportDir) throws IOException {
final URI filePath = URIUtil.append(exportDir, "code_smells.csv");
final File file = new File(filePath);
FileUtils.delete(file);
final BaseProblemExporter exporter = new SingleCsvProblemExporter(project);
exporter.exportMarkers(new NullProgressMonitor(), filePath.getPath(), Calendar.getInstance().getTime());
}
Aggregations