Package com.axelor.text
Class Renderer
- java.lang.Object
-
- com.axelor.text.Renderer
-
public abstract class Renderer extends Object
-
-
Constructor Summary
Constructors Constructor Description Renderer()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description String
render()
Render the template.abstract void
render(Writer out)
Render the template.
-
-
-
Method Detail
-
render
public String render()
Render the template.- Returns:
- the template output
-
render
public abstract void render(Writer out) throws IOException
Render the template.- Parameters:
out
- the writer instance to write the output- Throws:
IOException
- if writer throws anyIOException
-
-