source: josm/trunk/src/org/openstreetmap/josm/actions/upload/UploadHook.java@ 8931

Last change on this file since 8931 was 8931, checked in by Don-vip, 10 years ago

javadoc fixes

  • Property svn:eol-style set to native
File size: 361 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions.upload;
3
4import org.openstreetmap.josm.data.APIDataSet;
5
6public interface UploadHook {
7
8 /**
9 * Checks the upload.
10 * @param apiDataSet the data to upload
11 * @return {@code true} if upload is possible
12 */
13 boolean checkUpload(APIDataSet apiDataSet);
14}
Note: See TracBrowser for help on using the repository browser.