Package fitnesse.wiki

Examples of fitnesse.wiki.WikiPageProperty


      }
      return childPage;
    }

    private WikiPage createSymbolicPage(BaseWikiPage page, String linkName) {
      WikiPageProperty symLinkProperty = page.getData().getProperties().getProperty(SymbolicPage.PROPERTY_NAME);
      if (symLinkProperty == null)
        return null;
      String linkPath = symLinkProperty.get(linkName);
      if (linkPath == null)
        return null;

      if (linkPath.startsWith("file:"))
        return createExternalSymbolicLink(linkPath, linkName, page);
View Full Code Here

TOP

Related Classes of fitnesse.wiki.WikiPageProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.