Package org.vosao.bliki

Examples of org.vosao.bliki.VosaoWikiModel


  }

  @Override
  public String renderWiki(String template, PageEntity page) {
    try {
      VosaoWikiModel wikiModel = new VosaoWikiModel(page);
      return wikiModel.render(template);
    } catch (ParseErrorException e) {
      return e.toString();
    } catch (MethodInvocationException e) {
      return e.toString();
    } catch (ResourceNotFoundException e) {
View Full Code Here

TOP

Related Classes of org.vosao.bliki.VosaoWikiModel

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.