Package ghidra.app.tablechooser
Interface TableChooserExecutor
-
public interface TableChooserExecutor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexecute(AddressableRowObject rowObject)Applies this executors action to the given rowObject.java.lang.StringgetButtonName()A short name suitable for display in the "apply" button that indicates what the "apply" action does.
-
-
-
Method Detail
-
getButtonName
java.lang.String getButtonName()
A short name suitable for display in the "apply" button that indicates what the "apply" action does.- Returns:
- A short name suitable for display in the "apply" button that indicates what the "apply" action does.
-
execute
boolean execute(AddressableRowObject rowObject)
Applies this executors action to the given rowObject. Return true if the given object should be removed from the table.- Parameters:
rowObject- the AddressRowObject to be executed upon- Returns:
- true if the rowObject should be removed from the table, false otherwise
-
-