01: /*
02: * Wilos Is a cLever process Orchestration Software - http://www.wilos-project.org
03: * Copyright (C) 2007 Mathieu BENOIT <mathieu-benoit@hotmail.fr>
04: *
05: * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
06: * General Public License as published by the Free Software Foundation; either version 2 of the License,
07: * or (at your option) any later version.
08: *
09: * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11: * GNU General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public License along with this program; if not,
14: * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15: */
16:
17: package wilos.tools.exports;
18:
19: import wilos.model.misc.project.Project;
20: import wilos.tools.IExchangeManager;
21:
22: public interface IProjectExportManager extends IExchangeManager {
23:
24: /**
25: *
26: * @param _project
27: * @param _exportingFilePath
28: */
29: void exportProject(Project _project, String _exportingFilePath);
30:
31: }
|