exe4j API documentation


com.exe4j
Interface Controller.StartupListener

All Superinterfaces:
java.util.EventListener
Enclosing class:
Controller

public static interface Controller.StartupListener
extends java.util.EventListener

The interface for startup events in single instance mode.

Author:
ej-technologies GmbH

Method Summary
 void startupPerformed(java.lang.String parameters)
          Will be called when the executable is started again.
 

Method Detail

startupPerformed

void startupPerformed(java.lang.String parameters)
Will be called when the executable is started again. Note that each invocation may be from a separate thread. If you have to serialize calls into this method, please synchronize the implementation.

Parameters:
parameters - the parameters of the invocation. For multiple files, files are surrounded by double-quotes and separated by spaces.

Note: any default arguments defined in the wizard will not be passed again here

.