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