in src/main/java/org/apache/maven/plugins/pmd/PmdReportRenderer.java [295:308]
private void outputLineLink(int line, PmdFileInfo fileInfo) {
String xrefLocation = null;
if (fileInfo != null) {
xrefLocation = fileInfo.getXrefLocation();
}
if (xrefLocation != null) {
sink.link(xrefLocation + "/" + currentFilename.replaceAll("\\.java$", ".html") + "#L" + line);
}
sink.text(String.valueOf(line));
if (xrefLocation != null) {
sink.link_();
}
}