Package org.gjt.sp.util
Interface ProgressObserver
-
- All Known Implementing Classes:
BufferAutosaveRequest
,BufferInsertRequest
,BufferIORequest
,BufferLoadRequest
,BufferSaveRequest
,CopyFileWorker
,IoTask
,LocalFileSaveTask
,MarkersSaveRequest
,Task
public interface ProgressObserver
Interface used to monitor things that can progress.- Since:
- jEdit 4.3pre3
- Version:
- $Id: ProgressObserver.java 21831 2012-06-18 22:54:17Z ezust $
- Author:
- Matthieu Casanova
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setMaximum(long value)
Update the maximum value.void
setStatus(java.lang.String status)
Update the status label.void
setValue(long value)
Update the progress value.
-
-
-
Method Detail
-
setValue
void setValue(long value)
Update the progress value.- Parameters:
value
- the new value- Since:
- jEdit 4.3pre3
-
setMaximum
void setMaximum(long value)
Update the maximum value.- Parameters:
value
- the new maximum value- Since:
- jEdit 4.3pre3
-
setStatus
void setStatus(java.lang.String status)
Update the status label.- Parameters:
status
- the new status label- Since:
- jEdit 4.3pre3
-
-