public class Progress
extends java.lang.Object
do Progress.progress(20,100,'calling subtask' Progress.push(20,25,'prefix') finally Progress.pop() endwhich means, that a current progress of 20/100 is shown in the current progress context, a new progress context is created which ranges from 20-25 of these 100, and will prefix the sub context messages with the given prefix. The final pop() will remove the nested progress context again, ending the sub context.
Modifier and Type | Method and Description |
---|---|
static void |
pop()
pops one level of context for the ProgressDisplayI assigned to the current Thread
|
static void |
progress()
displays progress to the ProgressDisplayI assigned to the current Thread
|
static void |
progress(int current) |
static void |
progress(int current,
int total) |
static void |
progress(int current,
int total,
java.lang.String text) |
static void |
progress(int current,
java.lang.String text) |
static void |
progress(java.lang.String text) |
static void |
progress(java.lang.String text,
int current) |
static void |
progress(java.lang.String text,
int current,
int total) |
static void |
push(int rangeStart,
int rangeEnd,
java.lang.String text)
pushes an additional context for the ProgressDisplayI assigned to the current Thread.
|
static void |
setProgressDisplayITL(ProgressDisplayI pd) |
public static void progress(java.lang.String text)
public static void progress(java.lang.String text, int current)
public static void progress(java.lang.String text, int current, int total)
public static void progress(int current, java.lang.String text)
public static void progress()
public static void progress(int current)
public static void progress(int current, int total)
public static void progress(int current, int total, java.lang.String text)
public static void push(int rangeStart, int rangeEnd, java.lang.String text)
public static void pop()
public static void setProgressDisplayITL(ProgressDisplayI pd)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.