org.gephi.io.importer.api
Interface ImportController
- All Known Implementing Classes:
- ImportControllerImpl
public interface ImportController
Manage and control the import executionf low.
This controller is a singleton and can therefore be found in Lookup:
ImportController ic = Lookup.getDefault().lookup(ImportController.class);
- Author:
- Mathieu Bastian
importFile
Container importFile(java.io.File file)
throws java.io.FileNotFoundException
- Throws:
java.io.FileNotFoundException
importFile
Container importFile(java.io.File file,
FileImporter importer)
throws java.io.FileNotFoundException
- Throws:
java.io.FileNotFoundException
importFile
Container importFile(java.io.Reader reader,
FileImporter importer)
importFile
Container importFile(java.io.InputStream stream,
FileImporter importer)
importSpigot
Container importSpigot(SpigotImporter importer)
getFileImporter
FileImporter getFileImporter(java.io.File file)
getFileImporter
FileImporter getFileImporter(java.lang.String importerName)
importDatabase
Container importDatabase(Database database,
DatabaseImporter importer)
process
void process(Container container)
process
void process(Container container,
Processor processor,
Workspace workspace)
getFileTypes
FileType[] getFileTypes()
isFileSupported
boolean isFileSupported(java.io.File file)
getUI
ImporterUI getUI(Importer importer)
getWizardUI
ImporterWizardUI getWizardUI(Importer importer)