Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ public void createAdditionalExport(final IModelSession modelSession,
public boolean isAdditionalExportId(String id);

/**
* @param modelSession
* the model session
* @param exportDirectory
* the export directory
* @param exportType
* the export type
* @return the export path
*/
public List<Path> getExportPaths();
public List<Path> getExportPaths(final IModelSession modelSession,
Path exportDirectory, ExportType exportType);
}
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,10 @@ private List<TreeElementWithExportPaths> toTreeElementWithExportPaths(
&& additionalExportService.isAdditionalExportId(
treeElement.getId())) {
return new TreeElementWithExportPaths(treeElement,
additionalExportService.getExportPaths());
additionalExportService.getExportPaths(
getModelSession(),
getSelectedDirectory(),
getExportType()));
}
if (getTreeDataModel() instanceof final TableCheckboxTreeModel tableCheckboxTreeModel) {
final TableInfo tableInfo = tableCheckboxTreeModel
Expand Down
Loading