com.atlassian.jira.web.component
Interface IssueTableWriter


public interface IssueTableWriter

A callback to allow the IssueTableWebComponent to write an issue. This should be used when writing multiple issues. Method close() should be called to write a footer.


Method Summary
 void close()
          Writes the footer of the table.
 void write(Issue issue)
          For each issue that you wish to be written to the table, you need to call write.
 

Method Detail

write

void write(Issue issue)
           throws java.io.IOException
For each issue that you wish to be written to the table, you need to call write. You must also call close() after you have finished writing the issues

Parameters:
issue - The issue to write to the table
Throws:
java.io.IOException - thrown in case of I/O error

close

void close()
           throws java.io.IOException
Writes the footer of the table.

Throws:
java.io.IOException - thrown if an error occurred writing the output


Copyright © 2002-2011 Atlassian. All Rights Reserved.