public class RemoteApplicationHandler extends RuntimeEventHandler { //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Initialization //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /** * Constructs a new RemoteApplicationHandler. * * @param pListenerMethodName the method to be called inside the interface. */ public RemoteApplicationHandler(String pListenerMethodName) { super(IRemoteApplicationListener.class, pListenerMethodName); } } // RemoteApplicationHandler