javax.microedition.io.ServerSocketConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of midp-2.0-stub Show documentation
Show all versions of midp-2.0-stub Show documentation
Stub of the Mobile Information Device Profile v2.0
The newest version!
package javax.microedition.io;
import java.io.IOException;
/**
* @since MIDP 2.0
*/
public interface ServerSocketConnection extends StreamConnectionNotifier {
/**
* @throws IOException
*/
String getLocalAddress() throws IOException;
/**
* @throws IOException
*/
int getLocalPort() throws IOException;
}