diff options
| author | 2022-03-17 21:10:27 -0700 | |
|---|---|---|
| committer | 2022-03-18 15:59:53 +0000 | |
| commit | 9a08a753f8158b7883eefda70e6aa906abb2a8b8 (patch) | |
| tree | 6afdb3642fac04cf8cbe7d13bc8d6cdec80f3628 | |
| parent | ad2aa525071a0ba8991e0fdd33a15bbd1633a13d (diff) | |
TIAF: add JavaDoc for TvInteractiveAppServiceInfo constructor
Test: mmm
Change-Id: Ifc1b584f220dffc813075ec44f57820b988b8966
| -rw-r--r-- | media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java b/media/java/android/media/tv/interactive/TvInteractiveAppServiceInfo.java index 9c1b2425c013..ee6fb047567c 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."); |