commit | abc8e572d108a0f14ed6ae4c4fbc9c3b84b29ba4 | [log] [tgz] |
---|---|---|
author | Soonil Nagarkar <sooniln@google.com> | Wed Mar 06 11:35:31 2024 -0800 |
committer | Soonil Nagarkar <sooniln@google.com> | Wed Mar 06 11:36:24 2024 -0800 |
tree | 709f006b8e6438a308dab335c254c15f4c57f745 | |
parent | 1d651eb223ab8529977d77a38306d9ada9d856cf [diff] |
Add param javadocs Add param javadocs to Forward/ReverseGeocodeRequest per API council suggestion. Bug: 327275348 Test: n/a Change-Id: I5a02df0598f0f3f5a6f1a47cb3968dbbc7f17302
diff --git a/location/java/android/location/provider/ForwardGeocodeRequest.java b/location/java/android/location/provider/ForwardGeocodeRequest.java index 8f227b1..89d14fb 100644 --- a/location/java/android/location/provider/ForwardGeocodeRequest.java +++ b/location/java/android/location/provider/ForwardGeocodeRequest.java
@@ -260,7 +260,11 @@ mCallingAttributionTag = null; } - /** Sets the attribution tag. */ + /** + * Sets the attribution tag. + * + * @param attributionTag The attribution tag to associate with the request. + */ @NonNull public Builder setCallingAttributionTag(@NonNull String attributionTag) { mCallingAttributionTag = attributionTag;
diff --git a/location/java/android/location/provider/ReverseGeocodeRequest.java b/location/java/android/location/provider/ReverseGeocodeRequest.java index 57c9047..2107707 100644 --- a/location/java/android/location/provider/ReverseGeocodeRequest.java +++ b/location/java/android/location/provider/ReverseGeocodeRequest.java
@@ -207,7 +207,11 @@ mCallingAttributionTag = null; } - /** Sets the attribution tag. */ + /** + * Sets the attribution tag. + * + * @param attributionTag The attribution tag to associate with the request. + */ @NonNull public Builder setCallingAttributionTag(@NonNull String attributionTag) { mCallingAttributionTag = attributionTag;