SwingWorker#setProgress throws an IllegalArgumentException if the argument isn't from 0 to 100. I thought the main purpose of the setProgress method was to update a JProgressBar (as it was in this tutorial). If that's the case, why limit the SwingWorker's progress to [0, 100] when JProgressBar's progress is not limited?
|
|
||||
|
To the extent that this question has a constructive answer, the notion of what constitutes progress is probably best known to whatever is being modeled in the background thread. Scaling limits the amount of detail that must be exposed. At the same time, |
|||
|
Discussing api design is quite entertaining, but prone to guessing :-) Some random thoughts at the end of the week:
To answer the question (my 0.02Euro cents :-) - nothing bad in the design, it's a well-balanced base implmentation which handles the common use cases out off the box and at the same time is flexible enough to make more advanced requirement simple to implement.
you can't completely control the reporting granularity: all you can do, is to define the unit of the smallest chunk and then must expect to receive one or several of those smallest coins. |
|||||
|
|
1) 2) |
|||||||||
|
|
It depends on your use-case, but you can also use the publish method to publish progress and update a progress bar in the publish method. See my answer on another SO question for an example |
|||
|
