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

Last change on this file since 3128 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: 376 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.io;
3
4public enum UploadOrSaveState {
5 /**
6 * a data layer was successfully saved or upload to the server
7 */
8 OK,
9 /**
10 * uploading or saving a data layer has failed
11 */
12 FAILED,
13 /**
14 * uploading or saving a data layer was cancelled
15 */
16 CANCELLED
17}
Note: See TracBrowser for help on using the repository browser.