Package org.openstreetmap.josm.io
Interface OsmServerReadPostprocessor
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface OsmServerReadPostprocessor
Interface for plugins to process osm data after it has been downloaded or read from file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postprocessDataSet(DataSet ds, ProgressMonitor progress)
Execute the post processor.
-
-
-
Method Detail
-
postprocessDataSet
void postprocessDataSet(DataSet ds, ProgressMonitor progress)
Execute the post processor.- Parameters:
ds
- the dataset to read or modifyprogress
- the progress monitor
-
-