Home | History | Annotate | Download | only in epg

Lines Matching refs:channel

19 import com.android.tv.data.api.Channel;
28 private final Channel channel;
32 Channel channel,
34 if (channel == null) {
35 throw new NullPointerException("Null channel");
37 this.channel = channel;
45 public Channel getChannel() {
46 return channel;
57 + "channel=" + channel + ", "
69 return (this.channel.equals(that.getChannel()))
79 h ^= this.channel.hashCode();