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; /*from w w w . jav a 2s. c o m*/ import android.content.Context; /** * Created by macbury on 11.09.14. */ public class NavDivider extends NavBaseItem { private String title; public NavDivider(Context context, String title) { super(context); setTitle(title); } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @Override public int getType() { return 0; } }