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

Last change on this file since 10783 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

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