Hello everyone !
Is there any javadoc for the com.nokia.nfc.llcp.ResetListener interface ? Didn't find any in the javadoc embedded in the Nokia 6212 SDK.
Here is a sample code :
Any idea where I could find more documentation ?Code:public class ResetListenerImpl implements ResetListener { public boolean resetConnection(LLCPConnection llcpc) { System.out.println("ResetListener.resetConnection(LLCPConnection llcpc)"); return true; } public void resetAccepted(LLCPConnection llcpc) { System.out.println("ResetListener.resetAccepted(LLCPConnection llcpc)"); } } // [...] LLCPConnection connection; ResetListener resetListener = new ResetListenerImpl(); connection.setResetListener(resetListener); // [...]


Reply With Quote

