Back to project page BaseConverterPlus.
The source code is released under:
MIT License
If you think the Android project BaseConverterPlus 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 codemonkey800.org.baseconverter.models; /*from www .ja v a 2s. co m*/ public class NavigationDrawerListItem { private int icon; private String title; public NavigationDrawerListItem() { } public NavigationDrawerListItem( int icon, String title ) { this.icon = icon; this.title = title; } public int getIcon() { return icon; } public void setIcon( int icon ) { this.icon = icon; } public String getTitle() { return title; } public void setTitle( String title ) { this.title = title; } }