com.atlassian.jira.web
Interface Renderable


public interface Renderable

Some renderable content that can be rendered by a render tag. 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.

Since:
v5.0

Method Summary
 void render(Writer writer)
          Render this content to the given writer.
 

Method Detail

render

void render(Writer writer)
            throws IOException
Render this content to the given writer.

Parameters:
writer - The writer to render to
Throws:
IOException - If an error occured


Copyright © 2002-2013 Atlassian. All Rights Reserved.