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

Last change on this file since 4932 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: 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.