source: josm/trunk/src/org/openstreetmap/josm/io/OsmServerWritePostprocessor.java@ 12119

Last change on this file since 12119 was 10600, checked in by Don-vip, 8 years ago

see #11390 - sonar - squid:S1609 - Java 8: @FunctionalInterface annotation should be used to flag Single Abstract Method interfaces

  • Property svn:eol-style set to native
File size: 393 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io;
3
4import java.util.Collection;
5
6import org.openstreetmap.josm.data.osm.OsmPrimitive;
7import org.openstreetmap.josm.gui.progress.ProgressMonitor;
8
9@FunctionalInterface
10public interface OsmServerWritePostprocessor {
11
12 void postprocessUploadedPrimitives(Collection<OsmPrimitive> p, ProgressMonitor progress);
13}
Note: See TracBrowser for help on using the repository browser.