Back to project page welcome-android.
The source code is released under:
Copyright (c) 2014 FeedHenry Ltd, All Rights Reserved Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software")...
If you think the Android project welcome-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.feedhenry.android.drawer.model; /*from w ww .j ava 2 s. com*/ public class NavDrawerItem { private String title; private String count = "0"; // boolean to set visiblity of the counter private boolean isCounterVisible = false; public NavDrawerItem(){} public NavDrawerItem(String title){ this.title = title; } public NavDrawerItem(String title, boolean isCounterVisible, String count){ this.title = title; this.isCounterVisible = isCounterVisible; this.count = count; } public String getTitle(){ return this.title; } public String getCount(){ return this.count; } public boolean getCounterVisibility(){ return this.isCounterVisible; } public void setTitle(String title){ this.title = title; } public void setCount(String count){ this.count = count; } public void setCounterVisibility(boolean isCounterVisible){ this.isCounterVisible = isCounterVisible; } }