Back to project page asecrypto-goes-mobile-app.
The source code is released under:
GNU General Public License
If you think the Android project asecrypto-goes-mobile-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 at.fhj.gaar.asecrypto.mobile.ui.navigation; // w w w.j a va 2 s .c o m /** * Represents a user-chooseable task. */ public class DrawerItem { private int id; private String title; public DrawerItem(int id, final String title) { this.id = id; this.title = title; } @Override public String toString() { return getTitle(); } public int getId() { return id; } public String getTitle() { return title; } }