From 9a08a753f8158b7883eefda70e6aa906abb2a8b8 Mon Sep 17 00:00:00 2001 From: shubang Date: Thu, 17 Mar 2022 21:10:27 -0700 Subject: [PATCH] TIAF: add JavaDoc for TvInteractiveAppServiceInfo constructor Test: mmm Change-Id: Ifc1b584f220dffc813075ec44f57820b988b8966 --- .../media/tv/interactive/TvInteractiveAppServiceInfo.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java b/media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java index 9c1b2425c0137..ee6fb047567c3 100644 --- a/media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java +++ b/media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java @@ -71,6 +71,12 @@ public final class TvInteractiveAppServiceInfo implements Parcelable { private final String mId; private int mTypes; + /** + * Constructs a TvInteractiveAppServiceInfo object. + * + * @param context the application context + * @param component the component name of the TvInteractiveAppService + */ public TvInteractiveAppServiceInfo(@NonNull Context context, @NonNull ComponentName component) { if (context == null) { throw new IllegalArgumentException("context cannot be null.");