Java JProgressBar(int min, int max) Constructor
Syntax
JProgressBar(int min, int max) constructor from JProgressBar has the following syntax.
public JProgressBar(int min, int max)
Example
In the following code shows how to use JProgressBar.JProgressBar(int min, int max) constructor.
import javax.swing.JProgressBar;
// w ww.j a v a 2 s. c o m
public class Main {
public static void main(String[] argv) throws Exception {
int minimum = 0;
int maximum = 100;
JProgressBar progress = new JProgressBar(minimum, maximum);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »