| java.lang.Object org.radeox.engine.BaseRenderEngine
All known Subclasses: examples.MyWikiRenderEngine,
BaseRenderEngine | public class BaseRenderEngine implements RenderEngine(Code) | | Base implementation of RenderEngine
author: Stephan J. Schmidt version: $Id: BaseRenderEngine.java 7707 2006-04-12 17:30:19Z version: ian@caret.cam.ac.uk $ |
BaseRenderEngine | public BaseRenderEngine()(Code) | | |
getName | public String getName()(Code) | | Name of the RenderEngine. This is used to get a RenderEngine instance
with EngineManager.getInstance(name);
name Name of the engine |
init | protected void init()(Code) | | |
render | public String render(String content, RenderContext context)(Code) | | Render an input with text markup and return a String with e.g. HTML
Parameters: content - String with the input to render Parameters: context - Special context for the filter engine, e.g. with configurationinformation result Output with rendered content |
render | public String render(Reader in, RenderContext context) throws IOException(Code) | | Render an input with text markup from a Reader and write the result to a
writer
Parameters: in - Reader to read the input from Parameters: context - Special context for the render engine, e.g. with configurationinformation |
|
|