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 av a 2s. c om import android.os.Parcelable; import com.jeffpalm.android.epg.EPGItem; /** * Implements a full mapping from EPG nodes/items to TMZ node/items. */ public interface TMZAdapter extends Parcelable { /** * Converts an EPGItem to a TMZItem. * * @return the TMZ item */ TMZItem<?> adapt(EPGItem item); }