How to have an AbstractAnalyzer without AnalyzerType category? #7363
Unanswered
ignatirabo
asked this question in
Q&A
Replies: 1 comment
-
There are a couple current analyzers that also only want to run once. They do a bit of hacky stuff to accomplish it. For an example, check out |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I am implementing a Ghidra extension for which I created a class that extends
AbstractAnalyzer
, which forces me to provide anAnalyzerType
My goal for my class to execute only once at the end of the execution of all other analyzers.
For now I extended
AbstractAnalzyer
and implementedadded
and it works, but it executes my code many times which is not needed. I cannot find another class that behaves this way.Maybe I need to implement
ExtensionPoint
instead?Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions