File tree Expand file tree Collapse file tree
app/src/main/java/org/schabi/newpipe/info_list Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ /*
2+ * SPDX-FileCopyrightText: 2016-2026 NewPipe contributors <https://newpipe.net>
3+ * SPDX-License-Identifier: GPL-3.0-or-later
4+ */
5+
6+ package org.schabi.newpipe.info_list
7+
8+ import android.content.Context
9+ import org.schabi.newpipe.extractor.channel.ChannelInfoItem
10+ import org.schabi.newpipe.extractor.comments.CommentsInfoItem
11+ import org.schabi.newpipe.extractor.playlist.PlaylistInfoItem
12+ import org.schabi.newpipe.extractor.stream.StreamInfoItem
13+ import org.schabi.newpipe.util.OnClickGesture
14+
15+ class InfoItemBuilder (val context : Context ) {
16+ var onStreamSelectedListener: OnClickGesture <StreamInfoItem >? = null
17+ var onChannelSelectedListener: OnClickGesture <ChannelInfoItem >? = null
18+ var onPlaylistSelectedListener: OnClickGesture <PlaylistInfoItem >? = null
19+ var onCommentsSelectedListener: OnClickGesture <CommentsInfoItem >? = null
20+ }
You can’t perform that action at this time.
0 commit comments