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;
04:
05: import fitnesse.wikitext.widgets.*;
06:
07: public interface WidgetVisitor {
08: public void visit(WikiWidget widget) throws Exception;
09:
10: public void visit(WikiWordWidget widget) throws Exception;
11:
12: public void visit(AliasLinkWidget widget) throws Exception;
13: }
|