diff options
author | Stefan Andritoiu <[email protected]> | 2016-01-25 17:55:51 +0200 |
---|---|---|
committer | Stefan Andritoiu <[email protected]> | 2016-01-25 17:55:51 +0200 |
commit | d8ca80f271c7f679fa48b6e98d8ed296232f02b8 (patch) | |
tree | 2cf8722363d12ce7445781f3b9474849e8969855 /java/BluetoothObject.java | |
parent | 6acfb02f6cdba9a5dbda18683d2dfa0ca05b08c9 (diff) |
java: Added javadoc documentation to tinyb Java API
Signed-off-by: Stefan Andritoiu <[email protected]>
Diffstat (limited to 'java/BluetoothObject.java')
-rw-r--r-- | java/BluetoothObject.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java/BluetoothObject.java b/java/BluetoothObject.java index 4b0f31c4..2914bb08 100644 --- a/java/BluetoothObject.java +++ b/java/BluetoothObject.java @@ -28,7 +28,14 @@ public class BluetoothObject { long nativeInstance; + /** Returns the BluetoothType of this object + * @return The BluetoothType of this object + */ public native BluetoothType getBluetoothType(); + + /** Returns a clone of the BluetoothObject + * @return A clone of the BluetoothObject + */ public native BluetoothObject clone(); private native void delete(); |