Package ghidra.app.cmd.memory
Interface MoveBlockListener
-
public interface MoveBlockListenerListener that is notified when a move block completed or some state has changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmoveBlockCompleted(MoveBlockTask cmd)Notification that the move block completed.voidstateChanged()Notification that something has changed.
-
-
-
Method Detail
-
stateChanged
void stateChanged()
Notification that something has changed.
-
moveBlockCompleted
void moveBlockCompleted(MoveBlockTask cmd)
Notification that the move block completed.- Parameters:
cmd- the command that was executed to move the block; the command has the status of whether the block was moved successfully
-
-