01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.wikitext.widgets;
04:
05: public class CommentWidget extends TextWidget {
06: public static final String REGEXP = "^#[^\r\n]*(?:(?:\r\n)|\n|\r)?";
07:
08: public CommentWidget(ParentWidget parent, String text) {
09: super (parent, text);
10: }
11:
12: public String render() throws Exception {
13: return "";
14: }
15: }
|