Back to project page epgreader-android.
The source code is released under:
Apache License
If you think the Android project epgreader-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jeffpalm.android.tmz.model; //from w w w.j a v a2 s .com import android.os.Parcelable; import com.jeffpalm.android.epg.EPGItem; /** * * @param <I> the underlying {@code EPGItem} */ public interface TMZItem<I extends EPGItem> extends Parcelable { /** @return the underlying {@code EPGItem} */ I getItem(); }