package org.simantics.graph.db; import org.simantics.db.Resource; import org.simantics.db.WriteOnlyGraph; import org.simantics.db.exception.DatabaseException; import org.simantics.db.service.SerialisationSupport; public interface TransferableGraphImporter { public Resource createChild(WriteOnlyGraph graph, Resource parent, Resource child, String name) throws DatabaseException; public long[] getResourceIds(SerialisationSupport serializer) throws DatabaseException; }