]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.export.core/src/org/simantics/export/core/intf/Importer.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.export.core / src / org / simantics / export / core / intf / Importer.java
1 package org.simantics.export.core.intf;\r
2 \r
3 import org.simantics.export.core.error.ExportException;\r
4 \r
5 /**\r
6  * Importer Extension \r
7  *\r
8  * @author toni.kalajainen@semantum.fi\r
9  */\r
10 public interface Importer {\r
11         \r
12         String formatId();\r
13         \r
14         String contentTypeId();\r
15 \r
16         /**\r
17          * Code that imports the content using format_type specific reader.\r
18          * @return\r
19          * @throws ExportException \r
20          */\r
21         ImportAction importAction() throws ExportException;\r
22         \r
23 }\r