// Copyright (c) ZeroC, Inc. // This is a placeholder for the Android API. It is not included in the IceBT JAR file. package android.bluetooth; import java.io.Closeable; import java.io.IOException; public final class BluetoothServerSocket implements Closeable { public BluetoothSocket accept() throws IOException { return null; } public void close() throws IOException {} }