Package ghidra.util.bytesearch
Interface MatchAction
-
- All Known Implementing Classes:
DummyMatchAction,GenericMatchAction
public interface MatchActionInterface for a match action to be taken for the Program@Address for a ditted bit seqence pattern
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapply(Program program, Address addr, Match match)Apply the match action to the program at the address.voidrestoreXml(XmlPullParser parser)Action can be constructed from XML
-
-
-
Method Detail
-
apply
void apply(Program program, Address addr, Match match)
Apply the match action to the program at the address.- Parameters:
program- program in which the match occurredaddr- where the match occuredmatch- information about the match that occurred
-
restoreXml
void restoreXml(XmlPullParser parser)
Action can be constructed from XML- Parameters:
parser- XML pull parser to restore action from XML
-
-