diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/DetailAST.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/DetailAST.java index 56b522656..cd29871cf 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/DetailAST.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/DetailAST.java @@ -25,11 +25,15 @@ import antlr.Token; import antlr.collections.AST; /** - * An extension of the CommonAST that records the line and column number. - * The idea was taken from http://www.jguru.com/jguru/faq/view.jsp?EID=62654. + * An extension of the CommonAST that records the line and column + * number. The idea was taken from Java Guru + * FAQ: How can I include line numbers in automatically generated + * ASTs?. * @author Oliver Burn * @author lkuehne * @version 1.0 + * @see ANTLR Website */ public final class DetailAST extends CommonAST