Cita:
Iniciado por cronopiomx en la Class Empleado, tienes protected Categoria = null; deberia ser
protected Categoria objeto, y el constructor lo inicializas en null u otra cosa..
alex
es verdad se me paso. pero me pusiste la duda en el constructor, yo lo haria asi
Código Javascript
:
Ver originalclass Empleado {
protected int id = 0;
protected Categoria categoria = null;
public Empleado(){}
public Empleado(int id,Categoria categoria ){
this.id = id;
this.categoria = categoria;
//SI SETEO CATEGORIA COMO NULL ENTONCES SOLO CON SETCATEGORIA
//POSRIA ASIGNARLE UN VALOR A CATEGORIA.
//¿ESTA MAL QUE EL ATRIBUTO CATEGORIA SE INICIALICE CON NULL?
}
public int getId(){
return this->id;
}
public int getCategoria(){
return this->Categoria;
}
public void setId(int id){
this->id = id;
}
public void setCategoria(Categoria categoria){
this->Categoria = categoria;
}
}