|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface RenderEngine
Interface for RenderEngines. A RenderEngine renders a input string to an output string with the help of filters.
Method Summary | |
---|---|
InitialRenderContext |
getInitialRenderContext()
Return the InitialRenderContext of the RenderEngine |
java.lang.String |
getName()
Name of the RenderEngine. |
java.lang.String |
render(java.io.Reader in,
RenderContext context)
Render an input with text markup from a Reader and write the result to a writer |
java.lang.String |
render(java.lang.String content,
RenderContext context)
Render an input with text markup and return a String with e.g. |
void |
render(java.io.Writer out,
java.lang.String content,
RenderContext context)
Render an input with text markup and an write the result e.g. |
Method Detail |
---|
java.lang.String getName()
java.lang.String render(java.lang.String content, RenderContext context)
content
- String with the input to rendercontext
- Special context for the render engine, e.g. with
configuration information
void render(java.io.Writer out, java.lang.String content, RenderContext context) throws java.io.IOException
out
- Writer to write the output tocontent
- String with the input to rendercontext
- Special context for the render engine, e.g. with
configuration information
java.io.IOException
java.lang.String render(java.io.Reader in, RenderContext context) throws java.io.IOException
in
- Reader to read the input fromcontext
- Special context for the render engine, e.g. with
configuration information
java.io.IOException
InitialRenderContext getInitialRenderContext()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |