Android Open Source - SQLite Persona Get Set






From Project

Back to project page SQLite.

License

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.

Java Source Code

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;
    }

}




Java Source Code List

com.bugsoft.erwin.sqlite1.ActualPer.java
com.bugsoft.erwin.sqlite1.ApplicationTest.java
com.bugsoft.erwin.sqlite1.Busquedas.java
com.bugsoft.erwin.sqlite1.MainActivity.java
com.bugsoft.erwin.sqlite1.BD.ConPers.java
com.bugsoft.erwin.sqlite1.BD.PersonaGetSet.java