package org.simantics.export.core.intf; import org.simantics.export.core.error.ExportException; /** * Importer Extension * * @author toni.kalajainen@semantum.fi */ public interface Importer { String formatId(); String contentTypeId(); /** * Code that imports the content using format_type specific reader. * @return * @throws ExportException */ ImportAction importAction() throws ExportException; }