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: public class PagePointer {
06: public WikiPage root;
07:
08: public WikiPagePath path;
09:
10: public PagePointer(WikiPage root, WikiPagePath path) {
11: this .root = root;
12: this .path = path;
13: }
14:
15: public WikiPage getPage() throws Exception {
16: return root.getPageCrawler().getPage(root, path);
17: }
18: }
|