source: josm/trunk/src/org/openstreetmap/josm/gui/io/MaxChangesetSizeExceededPolicy.java@ 12531

Last change on this file since 12531 was 12370, checked in by michael2402, 7 years ago

Document upload dialog classes

  • Property svn:eol-style set to native
File size: 708 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.io;
3
4/**
5 * This determines what to do when the max changeset size was exceeded by a upload.
6 */
7public enum MaxChangesetSizeExceededPolicy {
8 /**
9 * Abort uploading. Send the user back to map editing.
10 */
11 ABORT,
12 /**
13 * Fill one changeset. If it is full send the user back to the
14 * upload dialog where he can choose another changeset or another
15 * upload strategy if he or she wants to.
16 */
17 FILL_ONE_CHANGESET_AND_RETURN_TO_UPLOAD_DIALOG,
18
19 /**
20 * Automatically open as many new changesets as necessary to upload
21 * the data.
22 */
23 AUTOMATICALLY_OPEN_NEW_CHANGESETS
24}
Note: See TracBrowser for help on using the repository browser.