source: josm/trunk/src/org/openstreetmap/josm/gui/io/UploadOrSaveState.java@ 12767

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

Document upload dialog classes

  • Property svn:eol-style set to native
File size: 442 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.io;
3
4/**
5 * The state a layer may have after attempting to upload it
6 */
7public enum UploadOrSaveState {
8 /**
9 * a data layer was successfully saved or upload to the server
10 */
11 OK,
12 /**
13 * uploading or saving a data layer has failed
14 */
15 FAILED,
16 /**
17 * uploading or saving a data layer was canceled
18 */
19 CANCELED
20}
Note: See TracBrowser for help on using the repository browser.