Back to project page iEtueri.
The source code is released under:
GNU General Public License
If you think the Android project iEtueri 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 navigationdrawer; /* ww w .jav a 2 s . c o m*/ /** * Class for organize the List of the Navigation Drawer * * @author Javier Luque Sanabria */ public class DrawerList { private int idImage; private int idText; public DrawerList(int idImage, int idText) { this.idImage = idImage; this.idText = idText; } public int getIdImage() { return this.idImage; } public int getIdText() { return this.idText; } }