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 BlankParentWidget extends ParentWidget {
06: public BlankParentWidget(ParentWidget parent, String text)
07: throws Exception {
08: super (parent);
09: addChildWidgets(text);
10: }
11:
12: public String render() throws Exception {
13: return "";
14: }
15:
16: public String asWikiText() throws Exception {
17: return "";
18: }
19: }
|