summaryrefslogtreecommitdiff
path: root/javaSE/javaSE/src/main/java/com/smartdevicelink/managers/screen/SubscribeButtonManager.java
blob: 2ec64b6be09904e7353a25d80ab7d34846b71584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.smartdevicelink.managers.screen;

import androidx.annotation.NonNull;
import androidx.annotation.RestrictTo;

import com.smartdevicelink.proxy.interfaces.ISdl;

/**
 * <strong>SubscribeButtonManager</strong> <br>
 *
 * Note: This class must be accessed through the SdlManager. Do not instantiate it by itself. <br>
 *
 */
@RestrictTo(RestrictTo.Scope.LIBRARY)
public class SubscribeButtonManager extends BaseSubscribeButtonManager {

    public SubscribeButtonManager(@NonNull ISdl internalInterface) {
        super(internalInterface);
    }
}