Back to project page face_rec_android.
The source code is released under:
GNU General Public License
If you think the Android project face_rec_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 in.amolgupta.helpingfaceless.entities; /*w w w. j a va2s . c om*/ public class NavItem { private String title; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public NavItem(String title) { super(); this.title = title; } }