Back to project page Multi-Mania-app.
The source code is released under:
MIT License
If you think the Android project Multi-Mania-app 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 be.ana.nmct.multimania.vm; //from ww w. j a va2 s.c om /** * Created by Astrid on 3/12/2014. */ /** * A class for the navigationdrawer, there is an image and a name for the category */ public class NavigationItem { public int icon; public String name; // Constructor. public NavigationItem(int icon, String name) { this.icon = icon; this.name = name; } }