Lenguaje.java 464 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
package com.roshka.proyectofinal.entity;

public class Lenguaje {
    private int id;
    private String nombre_lenguaje;

    public Lenguaje() {

    }

11 12 13 14 15 16 17 18
    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

19 20 21 22 23 24 25 26
    public String getNombre_lenguaje() {
        return nombre_lenguaje;
    }

    public void setNombre_lenguaje(String nombre_lenguaje) {
        this.nombre_lenguaje = nombre_lenguaje;
    }
}