Package org.robovm.compiler.plugin
Class LaunchPlugin
java.lang.Object
org.robovm.compiler.plugin.Plugin
org.robovm.compiler.plugin.LaunchPlugin
- Direct Known Subclasses:
DebuggerLaunchPlugin
public abstract class LaunchPlugin extends Plugin
Plugin interface which makes it possible to hook into launch process
-
Constructor Summary
Constructors Constructor Description LaunchPlugin() -
Method Summary
Modifier and Type Method Description abstract voidafterLaunch(Config config, LaunchParameters parameters, Process process)Called after the launch of a RoboVM applicationabstract voidbeforeLaunch(Config config, LaunchParameters parameters)Called before the launch of a RoboVM applicationabstract voidcleanup()Called when the plugin should terminateabstract voidlaunchFailed(Config config, LaunchParameters parameters)Called when the launch failedMethods inherited from class org.robovm.compiler.plugin.Plugin
argumentValue, argumentValue, argumentValue, getArguments, parseArguments
-
Constructor Details
-
LaunchPlugin
public LaunchPlugin()
-
-
Method Details
-
beforeLaunch
Called before the launch of a RoboVM application -
afterLaunch
Called after the launch of a RoboVM application -
launchFailed
Called when the launch failed -
cleanup
public abstract void cleanup()Called when the plugin should terminate
-