diff options
| author | 2024-03-06 11:35:31 -0800 | |
|---|---|---|
| committer | 2024-03-06 11:36:24 -0800 | |
| commit | abc8e572d108a0f14ed6ae4c4fbc9c3b84b29ba4 (patch) | |
| 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
| -rw-r--r-- | location/java/android/location/provider/ForwardGeocodeRequest.java | 6 | ||||
| -rw-r--r-- | location/java/android/location/provider/ReverseGeocodeRequest.java | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/location/java/android/location/provider/ForwardGeocodeRequest.java b/location/java/android/location/provider/ForwardGeocodeRequest.java index 8f227b1604b7..89d14fb982d9 100644 --- a/location/java/android/location/provider/ForwardGeocodeRequest.java +++ b/location/java/android/location/provider/ForwardGeocodeRequest.java @@ -260,7 +260,11 @@ public final class ForwardGeocodeRequest implements Parcelable { 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 57c9047f07ca..210770740fcc 100644 --- a/location/java/android/location/provider/ReverseGeocodeRequest.java +++ b/location/java/android/location/provider/ReverseGeocodeRequest.java @@ -207,7 +207,11 @@ public final class ReverseGeocodeRequest implements Parcelable { 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; |