source: josm/trunk/src/org/openstreetmap/josm/gui/progress/ProgressRenderer.java@ 2875

Last change on this file since 2875 was 2512, checked in by stoecker, 14 years ago

i18n updated, fixed files to reduce problems when applying patches, fix #4017

File size: 469 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.progress;
3
4/**
5 * Swing components can implement this interface and use a {@see SwingRenderingProgressMonitor}
6 * to render progress information.
7 *
8 */
9public interface ProgressRenderer {
10 void setTaskTitle(String taskTitle);
11 void setCustomText(String message);
12 void setIndeterminate(boolean indeterminate);
13 void setMaximum(int maximum);
14 void setValue(int value);
15}
Note: See TracBrowser for help on using the repository browser.