Package ghidra.util
Interface StatusListener
-
- All Known Implementing Classes:
AboutDialog
,AbstractErrDialog
,AbstractNumberInputDialog
,AddEditDialog
,AddToProgramDialog
,ApplyEnumDialog
,AskAddrDialog
,AskDialog
,BatchImportDialog
,BigIntegerNumberInputDialog
,ChangedFilesDialog
,CheckoutDialog
,CheckoutDialog
,CheckoutsDialog
,ChooseColumnsDialog
,ColumnFilterArchiveDialog
,ColumnFilterDialog
,DataTreeDialog
,DataTypeSelectionDialog
,DialogComponentProvider
,EditFieldNameDialog
,ErrLogDialog
,ErrLogExpandableDialog
,ExtensionTableProvider
,FilterOptionsEditorDialog
,FindCheckoutsDialog
,FindDialog
,GhidraFileChooser
,GoToAddressLabelDialog
,ImageDialogProvider
,ImporterDialog
,ImporterLanguageDialog
,InputDialog
,InputWithChoicesDialog
,KeyEntryDialog
,LibraryPathsDialog
,ListSelectionDialog
,ListSelectionTableDialog
,ManagePluginsDialog
,MultiActionDialog
,MultiLineInputDialog
,MultiLineMessageDialog
,MultipleOptionsDialog
,NumberInputDialog
,NumberRangeInputDialog
,ObjectChooserDialog
,OkDialog
,OpenVersionedFileDialog
,OptionDialog
,OptionsDialog
,OptionsDialog
,PasswordChangeDialog
,PasswordDialog
,PickToolDialog
,PluginInstallerDialog
,ProjectInfoDialog
,ReadTextDialog
,SaveDataDialog
,SaveToolConfigDialog
,SelectChangedToolDialog
,SelectColumnsDialog
,SelectFromListDialog
,SelectLanguageDialog
,SetEquateDialog
,SettingsDialog
,TableChooserDialog
,TableChooserDialog
,TableSelectionDialog
,TaskDialog
,UndoActionDialog
,UserAgreementDialog
,VersionControlDialog
,VersionHistoryDialog
,WizardManager
public interface StatusListener
StatusListener
is a general purpose status listener responsible for displaying and/or recording status messages
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearStatusText()
Clear the current status - same as setStatusText("") without being recordedvoid
setStatusText(java.lang.String text)
Set the current status as type INFOvoid
setStatusText(java.lang.String text, MessageType type)
Set the current status as the specified typevoid
setStatusText(java.lang.String text, MessageType type, boolean alert)
Set the current status as the specified type
-
-
-
Method Detail
-
setStatusText
void setStatusText(java.lang.String text)
Set the current status as type INFO- Parameters:
text
- status text
-
setStatusText
void setStatusText(java.lang.String text, MessageType type)
Set the current status as the specified type- Parameters:
text
- status texttype
- status type
-
setStatusText
void setStatusText(java.lang.String text, MessageType type, boolean alert)
Set the current status as the specified type- Parameters:
text
- status texttype
- status typealert
- true to grab the user's attention
-
clearStatusText
void clearStatusText()
Clear the current status - same as setStatusText("") without being recorded
-
-