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

Last change on this file since 4932 was 4310, checked in by stoecker, 13 years ago

fix #6680, fix #6677 - i18n issues

  • Property svn:eol-style set to native
File size: 374 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 canceled
15 */
16 CANCELED
17}
Note: See TracBrowser for help on using the repository browser.