Back to project page ManipalNow-Android.
The source code is released under:
Apache License
If you think the Android project ManipalNow-Android 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.example.nav; /*from w w w. j a va 2 s . c o m*/ public class Level { public String title; public int icon; public String title2; public Level() { super(); } public Level(String title,int icon) { super(); this.icon = icon; this.title = title; } public Level(String title,String title2,int icon) { super(); this.icon=icon; this.title=title; this.title2=title2; } }