BluetoothSocket.java

// 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;
import java.io.InputStream;
import java.io.OutputStream;

public final class BluetoothSocket implements Closeable {
    public void close() throws IOException {}

    public void connect() throws IOException {}

    public InputStream getInputStream() throws IOException {
        return null;
    }

    public OutputStream getOutputStream() throws IOException {
        return null;
    }

    public BluetoothDevice getRemoteDevice() {
        return null;
    }

    public boolean isConnected() {
        return false;
    }
}