public class ProcessProgressEventArgs extends ProcessEventArgs
Provides data for OnProgress event of signing, verification and search processes.
Constructor and Description |
---|
ProcessProgressEventArgs() |
Modifier and Type | Method and Description |
---|---|
boolean |
getCancel()
Indicates whether process should be canceled.
|
int |
getProcessedSignatures()
Represents quantity of processed signatures.
|
int |
getProgress()
Represents progress in percents.
|
long |
getTicks()
Represents time spent in milliseconds since process Start event.
|
void |
setCancel(boolean value)
Indicates whether process should be canceled.
|
void |
setProcessedSignatures(int value)
Represents quantity of processed signatures.
|
void |
setProgress(int value)
Represents progress in percents.
|
void |
setTicks(long value)
Represents time spent in milliseconds since process Start event.
|
getFilePath, getStatus, setFilePath, setStatus
public final boolean getCancel()
Indicates whether process should be canceled.
public final int getProcessedSignatures()
Represents quantity of processed signatures.
public final int getProgress()
Represents progress in percents. Value range is from 0 to 100.
public final long getTicks()
Represents time spent in milliseconds since process Start event.
public final void setCancel(boolean value)
Indicates whether process should be canceled.
public final void setProcessedSignatures(int value)
Represents quantity of processed signatures.
public final void setProgress(int value)
Represents progress in percents. Value range is from 0 to 100.
public final void setTicks(long value)
Represents time spent in milliseconds since process Start event.