diff options
Diffstat (limited to 'java/org/direct_bt/BTGattDesc.java')
-rw-r--r-- | java/org/direct_bt/BTGattDesc.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/java/org/direct_bt/BTGattDesc.java b/java/org/direct_bt/BTGattDesc.java index 23ee5352..5318a262 100644 --- a/java/org/direct_bt/BTGattDesc.java +++ b/java/org/direct_bt/BTGattDesc.java @@ -36,11 +36,6 @@ package org.direct_bt; */ public interface BTGattDesc extends BTObject { - @Override - public BTGattDesc clone(); - - /* D-Bus method calls: */ - /** Reads the value of this descriptor * @return A vector<uchar> containing data from this descriptor */ @@ -53,22 +48,6 @@ public interface BTGattDesc extends BTObject */ public boolean writeValue(byte[] argValue) throws BTException; - /** - * Enables notifications for the value and calls run function of the BluetoothNotification - * object. - * @param callback A BluetoothNotification<byte[]> object. Its run function will be called - * when a notification is issued. The run function will deliver the new value of the value - * property. - */ - public void enableValueNotifications(BTNotification<byte[]> callback); - /** - * Disables notifications of the value and unregisters the callback object - * passed through the corresponding enable method. - */ - public void disableValueNotifications(); - - /* D-Bus property accessors: */ - /** Get the UUID of this descriptor. * @return The 128 byte UUID of this descriptor, NULL if an error occurred */ |