Lines Matching refs:progress
103 * properties available: {@code state} and {@code progress}.
168 * progress in a {@code JProgressBar}. Finally, we also want to print
202 * if ("progress".equals(evt.getPropertyName())) {
233 * current progress.
235 private volatile int progress;
259 * handler for progress property change notifications.
457 * Sets the {@code progress} bound property.
480 * @param progress the progress value to set
483 protected final void setProgress(int progress) {
484 if (progress < 0 || progress > 100) {
487 if (this.progress == progress) {
490 int oldProgress = this.progress;
491 this.progress = progress;
492 if (! getPropertyChangeSupport().hasListeners("progress")) {
501 firePropertyChange("progress",
512 doNotifyProgressChange.add(oldProgress, progress);
516 * Returns the {@code progress} bound property.
518 * @return the progress bound property.
521 return progress;