diff options
author | Andre Eisenbach <eisenbach@google.com> | 2014-06-27 14:31:37 -0700 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2014-07-01 17:16:11 +0000 |
commit | 25eb545b4c89baee20525f2fb4dc7737eae8a73b (patch) | |
tree | b69a48b087f91d78961cd1d81f12850917de30d4 /framework/java/android/bluetooth/BluetoothGattServer.java | |
parent | 80bf6280c19a741a1d0aa758ea29bda7ad2cc8a9 (diff) |
LE: Fix GATT server documentation to reflect API updates
Change-Id: I21100dd55a7bf9e85a07742f571d5743bad5ece1
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGattServer.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothGattServer.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGattServer.java b/framework/java/android/bluetooth/BluetoothGattServer.java index 2e993c9df1..fbbc2f77bb 100644 --- a/framework/java/android/bluetooth/BluetoothGattServer.java +++ b/framework/java/android/bluetooth/BluetoothGattServer.java @@ -32,12 +32,12 @@ import java.util.UUID; * Public API for the Bluetooth GATT Profile server role. * * <p>This class provides Bluetooth GATT server role functionality, - * allowing applications to create and advertise Bluetooth Smart services - * and characteristics. + * allowing applications to create Bluetooth Smart services and + * characteristics. * * <p>BluetoothGattServer is a proxy object for controlling the Bluetooth Service - * via IPC. Use {@link BluetoothAdapter#getProfileProxy} to get the - * BluetoothGatt proxy object. + * via IPC. Use {@link BluetoothManager#openGattServer} to get an instance + * of this class. */ public final class BluetoothGattServer implements BluetoothProfile { private static final String TAG = "BluetoothGattServer"; @@ -545,7 +545,7 @@ public final class BluetoothGattServer implements BluetoothProfile { /** * Add a service to the list of services to be hosted. * - * <p>Once a service has been addded to the the list, the service and it's + * <p>Once a service has been addded to the the list, the service and its * included characteristics will be provided by the local device. * * <p>If the local device has already exposed services when this function |