diff options
| author | 2016-12-05 15:51:17 +0000 | |
|---|---|---|
| committer | 2016-12-05 15:51:18 +0000 | |
| commit | 7241d2882667146a32f127c4aa84ed64c8154476 (patch) | |
| tree | 1a8a45de2fa670e5a7b6617209446561f90ee68c | |
| parent | 5fb37a7641d7d1d2efb87eb5fe3ccdb3a33876b6 (diff) | |
| parent | 0ae58fa665af12a3f060c3eecf5cb331a975880a (diff) | |
Merge "[AWARE] Fix javadocs for match filter update"
3 files changed, 9 insertions, 9 deletions
diff --git a/wifi/java/android/net/wifi/aware/SubscribeConfig.java b/wifi/java/android/net/wifi/aware/SubscribeConfig.java index bf35445ff88a..0fe69a81d218 100644 --- a/wifi/java/android/net/wifi/aware/SubscribeConfig.java +++ b/wifi/java/android/net/wifi/aware/SubscribeConfig.java @@ -405,7 +405,7 @@ public final class SubscribeConfig implements Parcelable { * single match session (corresponding to the same publish action on the * peer) reported to the host (using the * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], byte[])}). The options are: only report the first match and ignore the rest + * byte[], List)}). The options are: only report the first match and ignore the rest * {@link SubscribeConfig#MATCH_STYLE_FIRST_ONLY} or report every single * match {@link SubscribeConfig#MATCH_STYLE_ALL} (the default). * diff --git a/wifi/java/android/net/wifi/aware/WifiAwareCharacteristics.java b/wifi/java/android/net/wifi/aware/WifiAwareCharacteristics.java index 95d128d8e514..092aa341c9b3 100644 --- a/wifi/java/android/net/wifi/aware/WifiAwareCharacteristics.java +++ b/wifi/java/android/net/wifi/aware/WifiAwareCharacteristics.java @@ -70,8 +70,8 @@ public class WifiAwareCharacteristics implements Parcelable { /** * Returns the maximum length of byte array that can be used to specify a Aware match filter. * Restricts the parameters of the - * {@link PublishConfig.Builder#setMatchFilter(java.util.List<byte[]>)} and - * {@link SubscribeConfig.Builder#setMatchFilter(java.util.List<byte[]>)}. + * {@link PublishConfig.Builder#setMatchFilter(java.util.List)} and + * {@link SubscribeConfig.Builder#setMatchFilter(java.util.List)}. * * @return A positive integer, maximum legngth of byte array for Aware discovery match filter. */ diff --git a/wifi/java/android/net/wifi/aware/WifiAwareDiscoveryBaseSession.java b/wifi/java/android/net/wifi/aware/WifiAwareDiscoveryBaseSession.java index 451d8a594cc5..2812ad4f147d 100644 --- a/wifi/java/android/net/wifi/aware/WifiAwareDiscoveryBaseSession.java +++ b/wifi/java/android/net/wifi/aware/WifiAwareDiscoveryBaseSession.java @@ -140,7 +140,7 @@ public class WifiAwareDiscoveryBaseSession { * Sends a message to the specified destination. Aware messages are transmitted in the context * of a discovery session - executed subsequent to a publish/subscribe * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], java.util.List<byte[]>)} event. + * byte[], java.util.List)} event. * <p> * Aware messages are not guaranteed delivery. Callbacks on * {@link WifiAwareDiscoverySessionCallback} indicate message was transmitted successfully, @@ -154,7 +154,7 @@ public class WifiAwareDiscoveryBaseSession { * * @param peerHandle The peer's handle for the message. Must be a result of an * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], java.util.List<byte[]>)} or + * byte[], java.util.List)} or * {@link WifiAwareDiscoverySessionCallback#onMessageReceived(WifiAwareManager.PeerHandle, * byte[])} events. * @param messageId An arbitrary integer used by the caller to identify the message. The same @@ -187,7 +187,7 @@ public class WifiAwareDiscoveryBaseSession { * Sends a message to the specified destination. Aware messages are transmitted in the context * of a discovery session - executed subsequent to a publish/subscribe * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], java.util.List<byte[]>)} event. + * byte[], java.util.List)} event. * <p> * Aware messages are not guaranteed delivery. Callbacks on * {@link WifiAwareDiscoverySessionCallback} indicate message was transmitted successfully, @@ -203,7 +203,7 @@ public class WifiAwareDiscoveryBaseSession { * * @param peerHandle The peer's handle for the message. Must be a result of an * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], java.util.List<byte[]>)} or + * byte[], java.util.List)} or * {@link WifiAwareDiscoverySessionCallback#onMessageReceived(WifiAwareManager.PeerHandle, * byte[])} events. * @param messageId An arbitrary integer used by the caller to identify the message. The same @@ -220,7 +220,7 @@ public class WifiAwareDiscoveryBaseSession { /** * Start a ranging operation with the specified peers. The peer IDs are obtained from an * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], java.util.List<byte[]>)} or + * byte[], java.util.List)} or * {@link WifiAwareDiscoverySessionCallback#onMessageReceived(WifiAwareManager.PeerHandle, * byte[])} operation - can * only range devices which are part of an ongoing discovery session. @@ -266,7 +266,7 @@ public class WifiAwareDiscoveryBaseSession { * * @param peerHandle The peer's handle obtained through * {@link WifiAwareDiscoverySessionCallback#onServiceDiscovered(WifiAwareManager.PeerHandle, - * byte[], java.util.List<byte[]>)} or + * byte[], java.util.List)} or * {@link WifiAwareDiscoverySessionCallback#onMessageReceived(WifiAwareManager.PeerHandle, * byte[])}. On a RESPONDER this value is used to gate the acceptance of a connection request * from only that peer. A RESPONDER may specified a null - indicating that |