From 8b43ebdbf7ff1abe9fb858fd5d0dbc2c903a4485 Mon Sep 17 00:00:00 2001 From: alexkravin Date: Sun, 11 Jan 2015 14:12:08 +0400 Subject: [PATCH] Prefixes, grammars, #512 --- .../checkstyle/grammars/CommentListener.java | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/main/java/com/puppycrawl/tools/checkstyle/grammars/CommentListener.java b/src/main/java/com/puppycrawl/tools/checkstyle/grammars/CommentListener.java index d2a79e182..639559704 100644 --- a/src/main/java/com/puppycrawl/tools/checkstyle/grammars/CommentListener.java +++ b/src/main/java/com/puppycrawl/tools/checkstyle/grammars/CommentListener.java @@ -32,12 +32,12 @@ public interface CommentListener * by a String whose value depends on the language being parsed, but would * typically be the delimiter for the comment. * - * @param aType an identifier for what type of comment it is. - * @param aStartLineNo the starting line number - * @param aStartColNo the starting column number + * @param type an identifier for what type of comment it is. + * @param startLineNo the starting line number + * @param startColNo the starting column number */ - void reportSingleLineComment(String aType, - int aStartLineNo, int aStartColNo); + void reportSingleLineComment(String type, + int startLineNo, int startColNo); /** * Report the location of a block comment that can span multiple lines. @@ -45,13 +45,13 @@ public interface CommentListener * the language being parsed, but would typically be the delimiter for the * comment. * - * @param aType an identifier for what type of comment it is. - * @param aStartLineNo the starting line number - * @param aStartColNo the starting column number - * @param aEndLineNo the ending line number - * @param aEndColNo the ending column number + * @param type an identifier for what type of comment it is. + * @param startLineNo the starting line number + * @param startColNo the starting column number + * @param endLineNo the ending line number + * @param endColNo the ending column number */ - void reportBlockComment(String aType, - int aStartLineNo, int aStartColNo, - int aEndLineNo, int aEndColNo); + void reportBlockComment(String type, + int startLineNo, int startColNo, + int endLineNo, int endColNo); }