public class Estudiantes
{
private String nombre;
private String apellido;
private String imagen;
private int cedula;
private int edad;
private int anio;
public Estudiantes(String nombre, String apellido, String imagen, int cedula, int edad, int anio)
{
this.nombre = nombre;
this.apellido = apellido;
this.imagen = imagen;
this.cedula = cedula;
this.edad = edad;
this.anio = anio;
}
public String getNombre()
{
return nombre;
}
public void setNombre(String nombre)
{
this.nombre = nombre;
}
public String getApellido()
{
return apellido;
}
public void setApellido(String apellido)
{
this.apellido = apellido;
}
public String getImagen()
{
return imagen;
}
public void setImagen(String imagen)
{
this.imagen = imagen;
}
public int getCedula()
{
return cedula;
}
public void setCedula(int cedula)
{
this.cedula = cedula;
}
public int getEdad()
{
return edad;
}
public void setEdad(int edad)
{
this.edad = edad;
}
public int getAnio()
{
return anio;
}
public void setAnio(int anio)
{
this.anio = anio;
}
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.