Package ghidra
Interface GhidraLaunchable
-
- All Known Implementing Classes:
AnalyzeHeadless
,ConvertFileSystem
,DataTypeArchiveIdDumper
,DataTypeArchiveTransformer
,DataTypeIDConverter
,GhidraJarBuilder
,GhidraRun
,GhidraScriptRunner
,PythonRun
public interface GhidraLaunchable
Something intended to be launched by theGhidraLauncher
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
launch(GhidraApplicationLayout layout, java.lang.String[] args)
Launches the launchable.
-
-
-
Method Detail
-
launch
void launch(GhidraApplicationLayout layout, java.lang.String[] args) throws java.lang.Exception
Launches the launchable.- Parameters:
layout
- The application layout to use for the launch.args
- The arguments passed through by theGhidraLauncher
.- Throws:
java.lang.Exception
- if there was a problem with the launch.
-
-