Add closing p tag

After discussion with sharell it turns out that some of the automated
 translation tools used for creating other ANTLR language targets look 
for closing tags (for one reason or another), so for this project 
the practice is to explicitly close all tags.
This commit is contained in:
Jan-Eric Duden 2014-09-29 00:02:07 +02:00
parent 26e2c72c97
commit 7bcb434c6f
2 changed files with 4 additions and 3 deletions

View File

@ -65,7 +65,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
* {@inheritDoc}
* <p>
* This implementation passes the message to the Maven log.
*
* </p>
* @param message The message to send to Maven
*/
@Override
@ -80,7 +80,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
* {@inheritDoc}
* <p>
* This implementation passes the message to the Maven log.
*
* </p>
* @param message The message to send to Maven.
*/
@Override
@ -103,7 +103,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
* {@inheritDoc}
* <p>
* This implementation passes the message to the Maven log.
*
* </p>
* @param message
*/
@Override

View File

@ -150,6 +150,7 @@ public class Antlr4Mojo extends AbstractMojo {
* A set of Ant-like inclusion patterns used to select files from the source
* directory for processing. By default, the pattern
* <code>**&#47;*.g4</code> is used to select grammar files.
* </p>
*/
@Parameter
protected Set<String> includes = new HashSet<String>();