source: josm/trunk/src/org/openstreetmap/josm/gui/progress/ProgressTaskIds.java@ 13691

Last change on this file since 13691 was 12369, checked in by michael2402, 7 years ago

Javadoc for gui.progress package

  • Property svn:eol-style set to native
File size: 447 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.progress;
3
4/**
5 * The default {@link ProgressTaskId}s used in JOSM
6 */
7public interface ProgressTaskIds {
8
9 /**
10 * Download GPS data
11 */
12 ProgressTaskId DOWNLOAD_GPS = new ProgressTaskId("core", "downloadGps");
13
14 /**
15 * Download WMS data along a gps line
16 */
17 ProgressTaskId PRECACHE_WMS = new ProgressTaskId("core", "precacheWms");
18
19}
Note: See TracBrowser for help on using the repository browser.