How to use pyghidra create listing or table? #8012
Replies: 3 comments 2 replies
-
|
I put in the work to make extending classes possible. It will still be a while though. Regarding using |
Beta Was this translation helpful? Give feedback.
-
|
I just ran into this same problem with one of my old plugins, and I'm a bit confused about the conversation here:
The relevant signature is this: The second argument is an executor that must implement |
Beta Was this translation helpful? Give feedback.
-
from jpype import JImplements, JOverride
from ghidra.app.tablechooser import TableChooserExecutor
@JImplements(TableChooserExecutor)
class MyExecutor(object):
@JOverride
def getButtonName(self):
return "My Button"
@JOverride
def execute(self, rowObject):
return false
executor = MyExecutor()
dialog = createTableChooserDialog("hi", executor)
dialog.show() |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I found the api
createTableChooserDialogatbut hot o use it in python?
If extend Java class in Python:
Beta Was this translation helpful? Give feedback.
All reactions