Back to project page EnklawaPlayer.
The source code is released under:
GNU General Public License
If you think the Android project EnklawaPlayer 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 macbury.pod.navigation_drawer; /*www. jav a 2s .com*/ import android.content.Context; /** * Created by macbury on 11.09.14. */ public abstract class NavBaseItem { protected final Context context; public NavBaseItem(Context context) { this.context = context; } public abstract int getType(); }