public class TestCustomCode extends Object implements CustomCode
Constructor and Description |
---|
TestCustomCode() |
Modifier and Type | Method and Description |
---|---|
void |
code(Writer writer,
Template env)
Called back from the template engine while substiting data inside
a template.
|
public TestCustomCode()
public void code(Writer writer, Template env) throws IOException
CustomCode
code
in interface CustomCode
writer
- can be used to write data at the point in the merged
file where the custom code was called. This writer
should not be closed, otherwise the template engine
will not be able to proceed after this method is invoked (since
the template engine also uses the same writer.env
- a reference to the template engine, can be used to
invoke methods in the engine.IOException