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

Last change on this file since 10755 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 474 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 {@link SwingRenderingProgressMonitor}
6 * to render progress information.
7 *
8 */
9public interface ProgressRenderer {
10 void setTaskTitle(String taskTitle);
11
12 void setCustomText(String message);
13
14 void setIndeterminate(boolean indeterminate);
15
16 void setMaximum(int maximum);
17
18 void setValue(int value);
19}
Note: See TracBrowser for help on using the repository browser.