mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 17:27:43 +00:00
New file, DSPProgressMonitor.java - that got missed in the the previous commit.
This commit is contained in:
parent
7000ab6865
commit
a3a027eea0
@ -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);
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user