public interface Renderable
Renderables are rendered straight to an HTML stream, no attempt is made by the caller to escape the content written, hence it is the responsibility of the implementor to ensure that any user entered content is escaped.
A renderable could be invoked many times, and hence should not consumer any resources it can't recreate.
Modifier and Type | Method and Description |
---|---|
void |
render(Writer writer)
Render this content to the given writer.
|
void render(Writer writer) throws IOException
writer
- The writer to render toIOException
- If an error occuredCopyright © 2002-2021 Atlassian. All Rights Reserved.