Back to project page SQLite.
The source code is released under:
GNU General Public License
If you think the Android project SQLite 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.bugsoft.erwin.sqlite1.BD; /*from ww w. ja v a 2 s .co m*/ /** * Created by erwin on 20/11/14. */ public class PersonaGetSet { private String id; private String nombre; private String appat; private String apmat; private int edad; private String sexo; private String cel; private String direc; private String carro; public String getId(){return id;} public String setId(String id){ return this.id = id;} public String getNombre(){ return nombre; } public String setNombre(String nombre){ return this.nombre = nombre; } public String getAppat(){ return appat; } public String setAppat(String appat){ return this.appat = appat; } public String getApmat(){ return apmat; } public String setApmat(String apmat){ return this.apmat = apmat; } public int getEdad(){ return edad; } public int setEdad(int edad){ return this.edad = edad; } public String getSexo(){ return sexo; } public String setSexo(String sexo){ return this.sexo = sexo; } public String getCel(){ return cel; } public String setCel(String cel){ return this.cel = cel; } public String getDirec(){ return direc; } public String setDirec(String direc){ return this.direc = direc; } public String getCarro(){ return carro; } public String setCarro(String carro){ return this.carro = carro; } }