com.polarion.alm.tracker.exporter.IExportManager
FIELDS
| Modifiers and Type | Name | Description |
|---|---|---|
| String | EXP_MSPROJECT | The Exporter ID that output Work Items to an MS Project. |
| String | EXP_CSV | The Exporter Id that outputs a tree or table of Work Items to CSV. |
| String | EXP_EXCEL_MATRIX | The Exporter ID that outputs a matrix of Work Items and/or Revisions to an Excel table. |
| String | EXP_EXCEL_TRACEABILITY_REPORT | The Exporter ID that outputs a traceability report of Work Items and/or Revisions to an Excel table. |
| String | EXP_XML_XML | The Exporter ID that outputs a table of Work Items to XML. |
| String | EXP_XML_HTML | The Exporter ID that outputs a table of Work Items to HTML. |
| String | EXP_XML_TXT | The Exporter ID that outputs a table of Work Items to TXT. |
| String | EXP_XML_PDF | The Exporter ID that outputs a table of Work Items to PDF. |
| String | EXP_XML_RTF | The Exporter ID that outputs a table of Work Items to RTF. |
| String | EXP_WORD_ROUND_TRIP | The Exporter ID that outputs a module to a Word round-trip document. |
| String | EXP_EXCEL_ROUND_TRIP | The exporter ID that outputs a module to an Excel round-trip document. |
METHODS
| Modifiers and Type | Name | Description |
|---|---|---|
| Collection | getExporterDescriptors(String) | Returns descriptors of all registered exporters (sorted lexicographically by label) that support the export type (see EXPORT_TYPE constants in subinterfaces of {@link IExportConfiguration} . |
| IExporterDescriptor | getExporterDescriptor(String) | Returns the descriptor with a given ID. |
| IExport | startExport(IExporterDescriptor,IExportConfiguration) | Starts the export. |
| void | removeExport(IExport) | Removes a completed export. |
| List | getExports(IUser) | Returns all exports started by a user (newer exports first), that have yet to be removed. If user is null, all exports are returned. |
| IExport | getExport(String) | Returns an export with a given ID or null if it is not found. |
| List | getTemplates(IExporterDescriptor,IContextId) | Returns templates available for export with a given exporter (sorted lexicographically by name) in given a context. (Templates inherited from other contexts are included.) |
| IExportTemplate | getTemplate(IExporterDescriptor,String,IContextId) | Returns a template with given name or null if such a template does not exist. |
| void | deleteTemplate(IExporterDescriptor,String,IContextId) | |
| IExportTemplateFactory | getTemplateFactory(String) | Returns a factory for exporter templates. |
Back to Index