JaRMoS  1.1
Java Reduced Model Simulations
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
IProgressReporter.java
Go to the documentation of this file.
1 package jarmos.util;
2 
11 public interface IProgressReporter {
16  public void setMessage(String msg);
17 
18  public void progress(int value);
19 
20  public void init(String title, int total);
21 
22  public void finish();
23 }
void setMessage(String msg)
void init(String title, int total)
Simple interface for progress reporting.