I have made a list where I place animals in. But when I want them in my ListView I get a weird notation??? What am I missing?
public void AddAnimal(){
Animal newAnimal = new Animal(getType(), getName(), getGender());
animals.add(newAnimal);
AnimalList.setItems(animals);
}
My GUI