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.epg; /*from www . ja va 2 s.c om*/ /** * A node with a name in an EGP feed. */ public interface EPGNode extends EPGItem { /** Returns the id of this item. */ String getId(); /** Returns the readable name of this item. */ String getName(); }