Skip to content

Commit c7ab577

Browse files
author
Aurélien Baudet
committed
[TECH] fix javadoc for release
1 parent 80d1e58 commit c7ab577

27 files changed

+151
-98
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@
156156
<goals>
157157
<goal>jar</goal>
158158
</goals>
159+
<configuration>
160+
<excludePackageNames>fr.sii.sonar.test.junit.domain</excludePackageNames>
161+
</configuration>
159162
</execution>
160163
</executions>
161164
</plugin>

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/domain/BranchCoverageDetail.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LCOV unit branch information. It exactly corresponds to a BRDA line in the
77
* LCOV file :
88
*
9-
* BRDA:<line number>,<block number>,<branch number>,<taken>
9+
* {@literal BRDA:<line number>,<block number>,<branch number>,<taken>}
1010
*
1111
* @author Aurélien Baudet
1212
* @see LcovBranchCoverageStatement

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/domain/CoverageInfo.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
* of hit statements and the details for each statement. A statement can be a
1717
* line, a function or a branch. These information are provided by the following lines :
1818
*
19-
* FNF:<number of functions found>
20-
* FNH:<number of function hit>
21-
* BRF:<number of branches found>
22-
* BRH:<number of branches hit>
23-
* LH:<number of lines with a non-zero execution count>
24-
* LF:<number of instrumented lines>
19+
* {@literal FNF:<number of functions found>}
20+
* {@literal FNH:<number of function hit>}
21+
* {@literal BRF:<number of branches found>}
22+
* {@literal BRH:<number of branches hit>}
23+
* {@literal LH:<number of lines with a non-zero execution count>}
24+
* {@literal LF:<number of instrumented lines>}
2525
*
2626
* @author Aurélien Baudet
2727
*

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/domain/FunctionCoverageDetail.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/**
77
* LCOV format provides information about covered functions. The function detailed information are provided by two different lines in the LCOV report :
88
*
9-
* FN:<line number of function start>,<function name>
10-
* FNDA:<execution count>,<function name>
9+
* {@literal FN:<line number of function start>,<function name>}
10+
* {@literal FNDA:<execution count>,<function name>}
1111
*
1212
* This class groups the two pieces of information.
1313
*

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/domain/LineCoverageDetail.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Provides detail information about the number of line execution. This is
77
* provided by the LCOV format with the line :
88
*
9-
* DA:<line number>,<execution count>[,<checksum>]
9+
* {@literal DA:<line number>,<execution count>[,<checksum>]}
1010
*
1111
* @author Aurélien Baudet
1212
*

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/statement/LcovBranchCoverageStatement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Branch coverage information is stored which one line per branch:
1414
*
15-
* BRDA:<line number>,<block number>,<branch number>,<taken>
15+
* {@literal BRDA:<line number>,<block number>,<branch number>,<taken>}
1616
*
1717
* Block number and branch number are gcc internal IDs for the branch. Taken is
1818
* either ’-’ if the basic block containing the branch was never executed or a

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/statement/LcovFunctionExecutionCountStatement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Next, there is a list of execution counts for each instrumented function:
1414
*
15-
* FNDA:<execution count>,<function name>
15+
* {@literal FNDA:<execution count>,<function name>}
1616
*
1717
* @author Aurélien Baudet
1818
*

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/statement/LcovFunctionNameStatement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Following is a list of line numbers for each function name found in the
1414
* source file:
1515
*
16-
* FN:<line number of function start>,<function name>
16+
* {@literal FN:<line number of function start>,<function name>}
1717
*
1818
* @author Aurélien Baudet
1919
*

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/statement/LcovLineExecutionCountStatement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Then there is a list of execution counts for each instrumented line (i.e. a
1414
* line which resulted in executable code):
1515
*
16-
* DA:<line number>,<execution count>[,<checksum>]
16+
* {@literal DA:<line number>,<execution count>[,<checksum>]}
1717
*
1818
* Note that there may be an optional checksum present for each instrumented
1919
* line. The current geninfo implementation uses an MD5 hash as checksumming

sonar-coverage-lcov/src/main/java/fr/sii/sonar/coverage/lcov/parser/statement/LcovNumberBranchFoundStatement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Branch coverage summaries are stored in two lines:
1212
*
13-
* BRF:<number of branches found>
13+
* {@literal BRF:<number of branches found>}
1414
*
1515
* @author Aurélien Baudet
1616
*

0 commit comments

Comments
 (0)