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.wiki;
04:
05: import java.util.ArrayList;
06: import java.util.List;
07:
08: public class NullVirtualCouplingPage extends VirtualCouplingPage {
09:
10: private static final long serialVersionUID = 1L;
11:
12: public NullVirtualCouplingPage(WikiPage hostPage) throws Exception {
13: super (hostPage);
14: }
15:
16: public List getChildren() throws Exception {
17: return new ArrayList();
18: }
19: }
|