From 4e87da6beaffd30841834800675f4b7bf1864a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Sat, 1 Mar 2003 08:55:31 +0000 Subject: [PATCH] added link to ANTLR FAQ (patch by Peter Dobratz) --- .../com/puppycrawl/tools/checkstyle/api/DetailAST.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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