summaryrefslogtreecommitdiff
path: root/framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java
diff options
context:
space:
mode:
authorJack He <siyuanh@google.com>2017-08-22 16:06:54 -0700
committerJack He <siyuanh@google.com>2017-08-24 19:09:48 +0000
commit910201beb0bde1dcf6b33e4ec5d1eb60042419d8 (patch)
tree9e7b8aa471daaed62a7e16a6b8cbd10a0a533e8a /framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java
parent931010f176faa894f06051c57290f7723dfbcd49 (diff)
Fix checkstyle errors (1/2)
* Automatic style corrections through IDE Bug: 63596319 Test: make checkbuild, no manual changes, no functional changes Change-Id: I2397d55abc34c9b7a9b748bec6137778df3421a7
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java')
-rw-r--r--framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java14
1 files changed, 8 insertions, 6 deletions
diff --git a/framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java b/framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java
index 927cb56665..036d36d0e5 100644
--- a/framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java
+++ b/framework/java/android/bluetooth/BluetoothAvrcpPlayerSettings.java
@@ -34,22 +34,22 @@ public final class BluetoothAvrcpPlayerSettings implements Parcelable {
/**
* Equalizer setting.
*/
- public static final int SETTING_EQUALIZER = 0x01;
+ public static final int SETTING_EQUALIZER = 0x01;
/**
* Repeat setting.
*/
- public static final int SETTING_REPEAT = 0x02;
+ public static final int SETTING_REPEAT = 0x02;
/**
* Shuffle setting.
*/
- public static final int SETTING_SHUFFLE = 0x04;
+ public static final int SETTING_SHUFFLE = 0x04;
/**
* Scan mode setting.
*/
- public static final int SETTING_SCAN = 0x08;
+ public static final int SETTING_SCAN = 0x08;
/**
* Invalid state.
@@ -84,14 +84,14 @@ public final class BluetoothAvrcpPlayerSettings implements Parcelable {
*
* Applies to {@link SETTING_REPEAT}, {@link SETTING_SHUFFLE} and {@link SETTING_SCAN}.
*/
- public static final int STATE_ALL_TRACK = 0x03;
+ public static final int STATE_ALL_TRACK = 0x03;
/**
* Group repeat/shuffle.
*
* Applies to {@link SETTING_REPEAT}, {@link SETTING_SHUFFLE} and {@link SETTING_SCAN}.
*/
- public static final int STATE_GROUP = 0x04;
+ public static final int STATE_GROUP = 0x04;
/**
* List of supported settings ORed.
@@ -157,6 +157,7 @@ public final class BluetoothAvrcpPlayerSettings implements Parcelable {
* Add a setting value.
*
* The setting must be part of possible settings in {@link getSettings()}.
+ *
* @param setting setting config.
* @param value value for the setting.
* @throws IllegalStateException if the setting is not supported.
@@ -173,6 +174,7 @@ public final class BluetoothAvrcpPlayerSettings implements Parcelable {
* Get a setting value.
*
* The setting must be part of possible settings in {@link getSettings()}.
+ *
* @param setting setting config.
* @return value value for the setting.
* @throws IllegalStateException if the setting is not supported.