Package org.gephi.io.importer.spi
Interface ImporterBuilder
-
- All Known Subinterfaces:
DatabaseImporterBuilder,FileImporterBuilder,WizardImporterBuilder
public interface ImporterBuilderFactory class for building importer instances. Declared in the system as services (i.e. singleton), the role of builders is simply the create new instances of particular importer on demand.To be recognized by the system, implementations must just add the following annotation:
@ServiceProvider(service=ImporterBuilder.class)
- Author:
- Mathieu Bastian
- See Also:
ImportController
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImporterbuildImporter()Builds a new importer instance, ready to be used.StringgetName()Returns the name of this builder
-