Interface PlantModelExporter
public interface PlantModelExporter
Implementations provide a way to export plant model data, for instance to write it to a file in a
third-party format or to a database.
-
Method Summary
Modifier and Type Method Description void
exportPlantModel(PlantModelCreationTO model)
Exports the given plant model data.java.lang.String
getDescription()
Returns a (localized) short textual description of this importer.
-
Method Details
-
exportPlantModel
Exports the given plant model data.- Parameters:
model
- The plant model data to be exported.- Throws:
java.io.IOException
- If there was a problem exporting plant model data.
-
getDescription
@Nonnull java.lang.String getDescription()Returns a (localized) short textual description of this importer.- Returns:
- A (localized) short textual description of this importer.
-