New file, DSPProgressMonitor.java - that got missed in the the previous commit.

This commit is contained in:
raman-bt 2013-10-16 08:14:17 -04:00
parent 7000ab6865
commit a3a027eea0

View File

@ -0,0 +1,19 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.sleuthkit.autopsy.casemodule;
/*
* An GUI agnostic DSPProgressMonitor interface for DataSorceProcesssors to
* indicate progress.
* It models after a JProgressbar though could use any underlying implementation
*/
public interface DSPProgressMonitor {
void setIndeterminate(boolean indeterminate);
void setProgress(int progress);
void setText(String text);
}