Back to project page NGAWWH.
The source code is released under:
GNU General Public License
If you think the Android project NGAWWH 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.me.ngawwh; /* w w w. j av a 2 s .com*/ public class Quest { private String Nombre; private String Contenido; public Quest(){} public void set_Nombre(String n){ Nombre = n; } public void set_Contenido(String c){ Contenido = c; } public String get_Nombre(){ return Nombre; } public String get_Contenido(){ return Contenido; } }