diff options
author | Sven Gothel <[email protected]> | 2021-01-29 12:58:56 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-01-29 12:58:56 +0100 |
commit | 4df98edb48b3dde8fb7403d0878eac82377d115e (patch) | |
tree | c3a7f6d75fa09f0eb88c5363557a3ccfdefab654 /java | |
parent | 39a4602a779323e68f180de1dfefd0a8513c41ec (diff) |
API doc fix: 'direct_bt.tinyb' -> 'jau.direct_bt'
Diffstat (limited to 'java')
-rw-r--r-- | java/org/direct_bt/BTDevice.java | 6 | ||||
-rw-r--r-- | java/org/direct_bt/BTManager.java | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/java/org/direct_bt/BTDevice.java b/java/org/direct_bt/BTDevice.java index c8ee27e9..50434584 100644 --- a/java/org/direct_bt/BTDevice.java +++ b/java/org/direct_bt/BTDevice.java @@ -70,7 +70,7 @@ public interface BTDevice extends BTObject /* Bluetooth method calls: */ /** - * <b>direct_bt.tinyb</b>: Disconnect the LE or BREDR peer's GATT and HCI connection. + * {@code jau.direct_bt}: Disconnect the LE or BREDR peer's GATT and HCI connection. * <p> * BT Core Spec v5.2: Vol 4, Part E HCI: 7.1.6 Disconnect command * </p> @@ -98,7 +98,7 @@ public interface BTDevice extends BTObject HCIStatusCode disconnect() throws BTException; /** - * <b>direct_bt.tinyb</b>: Establish a default HCI connection to this device, using certain default parameter. + * {@code jau.direct_bt}: Establish a default HCI connection to this device, using certain default parameter. * <p> * BT Core Spec v5.2: Vol 4, Part E HCI: 7.8.12 LE Create Connection command <br> * BT Core Spec v5.2: Vol 4, Part E HCI: 7.1.5 Create Connection command @@ -233,7 +233,7 @@ public interface BTDevice extends BTObject * and {@link #connectLE(short, short, short, short, short, short) connectLE(..)}. * </p> * @return TRUE if the device connected and paired - * @implNote not implemented in direct_bt.tinyb + * @implNote not implemented in {@code jau.direct_bt} */ boolean pair() throws BTException; diff --git a/java/org/direct_bt/BTManager.java b/java/org/direct_bt/BTManager.java index bbdb91f4..c2c2d135 100644 --- a/java/org/direct_bt/BTManager.java +++ b/java/org/direct_bt/BTManager.java @@ -252,14 +252,14 @@ public interface BTManager /** * Sets a default adapter to use for discovery. * @return TRUE if the device was set - * @implNote not implemented for direct_bt.tinyb + * @implNote not implemented for jau.direct_bt */ public boolean setDefaultAdapter(BTAdapter adapter); /** * Gets the default adapter to use for discovery. * <p> - * <i>direct_bt.tinyb</i>: The default adapter is either the first {@link BTAdapter#isPowered() powered} {@link BTAdapter}, + * {@code jau.direct_bt}: The default adapter is either the first {@link BTAdapter#isPowered() powered} {@link BTAdapter}, * or function returns nullptr if none is enabled. * </p> * <p> |