Package ghidra.util.task
Class TaskMonitorAdapter
java.lang.Object
ghidra.util.task.TaskMonitorAdapter
- All Implemented Interfaces:
TaskMonitor
- Direct Known Subclasses:
ConsoleTaskMonitor,DummyCancellableTaskMonitor
Implementation of
TaskMonitor with most features stubbed out.
This class supports cancelling and cancel listener notification. Cancelling must be enabled
via setCancelEnabled(boolean).
Use WrappingTaskMonitor if you need to override an existing TaskMonitor
instance's behavior.
-
Field Summary
FieldsFields inherited from interface ghidra.util.task.TaskMonitor
DUMMY, NO_PROGRESS_VALUE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddCancelledListener(CancelledListener listener) Add cancelled listenervoidcancel()Cancel the taskvoidDeprecated.voidCheck to see if this monitor has been cancelledvoidClear the cancellation so that this TaskMonitor may be reusedlongReturns the current maximum value for progressGets the last set message of this monitorintlongReturns the current progress value orTaskMonitor.NO_PROGRESS_VALUEif there is no value setvoidincrementProgress(long incrementAmount) Changes the progress value by the specified amount.voidinitialize(long max) Initialized this TaskMonitor to the given max values.booleanReturns true if cancel ability is enabledbooleanReturns true if the user has cancelled the operationbooleanReturns true if this monitor shows no progressprotected voidvoidremoveCancelledListener(CancelledListener listener) Remove cancelled listenervoidsetCancelEnabled(boolean enable) Set the enablement of the Cancel buttonvoidsetIndeterminate(boolean indeterminate) An indeterminate task monitor may choose to show an animation instead of updating progressvoidsetMaximum(long max) Set the progress maximum valuevoidsetMessage(String message) Sets the message displayed on the task monitorvoidsetMinimum(int min) voidsetProgress(long value) Sets the current progress valuevoidsetShowProgressValue(boolean showProgressValue) True (the default) signals to paint the progress information inside of the progress barMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ghidra.util.task.TaskMonitor
clearCancelled, increment, increment, incrementProgress, initialize
-
Field Details
-
DUMMY_MONITOR
Deprecated.useTaskMonitor.DUMMYinsteadProvides a static instance ofTaskMonitorAdapterwhich is a non-cancellable task monitor with no visual components.
-
-
Constructor Details
-
TaskMonitorAdapter
public TaskMonitorAdapter() -
TaskMonitorAdapter
public TaskMonitorAdapter(boolean cancelEnabled)
-
-
Method Details
-
isCancelled
public boolean isCancelled()Description copied from interface:TaskMonitorReturns true if the user has cancelled the operation- Specified by:
isCancelledin interfaceTaskMonitor- Returns:
- true if the user has cancelled the operation
-
checkCanceled
Deprecated.Description copied from interface:TaskMonitorCheck to see if this monitor has been cancelled- Specified by:
checkCanceledin interfaceTaskMonitor- Throws:
CancelledException- if monitor has been cancelled
-
checkCancelled
Description copied from interface:TaskMonitorCheck to see if this monitor has been cancelled- Specified by:
checkCancelledin interfaceTaskMonitor- Throws:
CancelledException- if monitor has been cancelled
-
setMessage
Description copied from interface:TaskMonitorSets the message displayed on the task monitor- Specified by:
setMessagein interfaceTaskMonitor- Parameters:
message- the message to display
-
getMessage
Description copied from interface:TaskMonitorGets the last set message of this monitor- Specified by:
getMessagein interfaceTaskMonitor- Returns:
- the message
-
setProgress
public void setProgress(long value) Description copied from interface:TaskMonitorSets the current progress value- Specified by:
setProgressin interfaceTaskMonitor- Parameters:
value- progress value
-
getMinimum
public int getMinimum() -
setMinimum
public void setMinimum(int min) -
getMaximum
public long getMaximum()Description copied from interface:TaskMonitorReturns the current maximum value for progress- Specified by:
getMaximumin interfaceTaskMonitor- Returns:
- the maximum progress value
-
initialize
public void initialize(long max) Description copied from interface:TaskMonitorInitialized this TaskMonitor to the given max values. The current value of this monitor will be set to zero.- Specified by:
initializein interfaceTaskMonitor- Parameters:
max- maximum value for progress
-
setMaximum
public void setMaximum(long max) Description copied from interface:TaskMonitorSet the progress maximum valueNote: setting this value will reset the progress to be the max if the progress is currently greater than the new max value.
- Specified by:
setMaximumin interfaceTaskMonitor- Parameters:
max- maximum value for progress
-
setShowProgressValue
public void setShowProgressValue(boolean showProgressValue) Description copied from interface:TaskMonitorTrue (the default) signals to paint the progress information inside of the progress bar- Specified by:
setShowProgressValuein interfaceTaskMonitor- Parameters:
showProgressValue- true to paint the progress value; false to not
-
setIndeterminate
public void setIndeterminate(boolean indeterminate) Description copied from interface:TaskMonitorAn indeterminate task monitor may choose to show an animation instead of updating progress- Specified by:
setIndeterminatein interfaceTaskMonitor- Parameters:
indeterminate- true if indeterminate
-
isIndeterminate
public boolean isIndeterminate()Description copied from interface:TaskMonitorReturns true if this monitor shows no progress- Specified by:
isIndeterminatein interfaceTaskMonitor- Returns:
- true if this monitor shows no progress
-
setCancelEnabled
public void setCancelEnabled(boolean enable) Description copied from interface:TaskMonitorSet the enablement of the Cancel button- Specified by:
setCancelEnabledin interfaceTaskMonitor- Parameters:
enable- true means to enable the cancel button
-
isCancelEnabled
public boolean isCancelEnabled()Description copied from interface:TaskMonitorReturns true if cancel ability is enabled- Specified by:
isCancelEnabledin interfaceTaskMonitor- Returns:
- true if cancel ability is enabled
-
cancel
public void cancel()Description copied from interface:TaskMonitorCancel the task- Specified by:
cancelin interfaceTaskMonitor
-
clearCanceled
public void clearCanceled()Description copied from interface:TaskMonitorClear the cancellation so that this TaskMonitor may be reused- Specified by:
clearCanceledin interfaceTaskMonitor
-
incrementProgress
public void incrementProgress(long incrementAmount) Description copied from interface:TaskMonitorChanges the progress value by the specified amount.- Specified by:
incrementProgressin interfaceTaskMonitor- Parameters:
incrementAmount- The amount by which to increment the progress
-
getProgress
public long getProgress()Description copied from interface:TaskMonitorReturns the current progress value orTaskMonitor.NO_PROGRESS_VALUEif there is no value set- Specified by:
getProgressin interfaceTaskMonitor- Returns:
- the current progress value or
TaskMonitor.NO_PROGRESS_VALUEif there is no value set
-
notifyChangeListeners
protected void notifyChangeListeners() -
addCancelledListener
Description copied from interface:TaskMonitorAdd cancelled listener- Specified by:
addCancelledListenerin interfaceTaskMonitor- Parameters:
listener- the cancel listener
-
removeCancelledListener
Description copied from interface:TaskMonitorRemove cancelled listener- Specified by:
removeCancelledListenerin interfaceTaskMonitor- Parameters:
listener- the cancel listener
-
TaskMonitor.DUMMYinstead