Package de.das.encrypter.processors
Interface ProgressListener
public interface ProgressListener
Interface for classes which want to get information about a current progress.
Such classes should know the maximum value if they want to work with
percentages, because the current amounts are assumed to be absolute values.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetCurrentAmount(int m) Sets the actual value of the progress.
-
Method Details
-
setCurrentAmount
void setCurrentAmount(int m) Sets the actual value of the progress.- Parameters:
m- the actual value of the progress.
-