Back to project page NerdZoo.
The source code is released under:
Apache License
If you think the Android project NerdZoo 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.bignerdranch.android.nerdzoo.drawer; //from w w w . ja va2 s .co m public class DrawerItem { private String mTitle; private int mIcon; public DrawerItem(String title, int icon) { mTitle = title; mIcon = icon; } public String getTitle() { return mTitle; } public int getIcon() { return mIcon; } public void setTitle(String title) { mTitle = title; } public void setIcon(int icon) { mIcon = icon; } }