Methods Summary |
---|
public com.sun.kvem.jsr082.obex.ObexTransport | acceptAndOpen()Accepts IrDA OBEX transport connections.
return new IrOBEXConnection(conn.acceptAndOpen());
|
public void | close()Closes this notifier and the underlying notifier.
synchronized (this) {
if (isClosed) {
return;
}
isClosed = true;
}
conn.close();
|
public javax.microedition.io.Connection | getUnderlyingConnection()Returns the underlying connection, or null if there is none.
return conn;
|