TIAF: add JavaDoc for TvInteractiveAppServiceInfo constructor

Test: mmm
Change-Id: Ifc1b584f220dffc813075ec44f57820b988b8966
This commit is contained in:
shubang
2022-03-17 21:10:27 -07:00
committed by Shubang Lu
parent ad2aa52507
commit 9a08a753f8

View File

@@ -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.");