Public Member Functions | |
boolean | configure () |
Configure export module. | |
void | add (in tmozIViewObject exportObj) |
Add object for export. | |
void | export () |
Export document. |
This interface allows to implement export module. Such export module can be used to export items from the document tree.
Instance of export module (tmozIExport) is constructed using tmozIExportFactory. Module have to also implement this interface.
void add | ( | in tmozIViewObject | exportObj | ) |
Add object for export.
Method add new object to the list of exported items.
exportObj | exported object |
boolean configure | ( | ) |
Configure export module.
Allows to prepare module for export. This method is called before any add() method.
void export | ( | ) |
Export document.
Method is called after all exported objects are inserted into the module. Method will export requested data.