jdialup
Interface JDNotification


public interface JDNotification

Defines a callback(from native side) notification method used when dialing. This interface must be implemented by some class to get feedback of the dialing state.

See Also:
JDial

Method Summary
 void notify(java.lang.String entry, int state, int error)
          Is called from native side.
 

Method Detail

notify

void notify(java.lang.String entry,
            int state,
            int error)
Is called from native side. The class that implements this interface must have a logic that serves the inputed parameters.

Parameters:
entry - entry name
state - connection state value
error - error value, if not 0
See Also:
JDState