Package org.apache.clerezza.platform.typerendering

Examples of org.apache.clerezza.platform.typerendering.Renderer.render()


      Renderer renderer = rendererFactory.createRenderer(docRootNode, null,
          Collections.singletonList(MediaType.APPLICATION_XHTML_XML_TYPE));
      FileOutputStream out = new FileOutputStream(outFile);
      try {
        System.out.println("writing " + outFile);
        renderer.render(docRootNode, docRootNode, null, null, null, null, new HashMap<String, Object>(), out);
      } finally {
        out.close();
      }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.