Status Reporter Interface (IReporter)

The IReporter interface is used to report status and progress information about a modules execution.


package comp314.interfaces;

/**
 * 
 * @author Daniel Buchanan (replace with whoever actually created this)
 *
 */
public interface IReporter {
    /** Set status message.
     * 
     * @param status Status message
     */
    void setStatus(String status);

    /** Sets progress level.
     * 
     * @param progress Progress level
     */
    void setProgress(int progress);
}



Subsections

David Goodwin 2008-10-21