public class Shoebill{ //Instanzvariablen private int age; private int size; private String name; private int numOfLegs; Shoebill(String n, int a, int s, int num){ this.age = a; this.name = n; this.size = s; this.numOfLegs = num; } void setName(String n){ this.name = n; } void setSize (int s){ this.size = s; } void setAge(int a){ this.age = a; } void setnumOfLegs (int num){ this.numOfLegs = num; } String getName(){ return name; } int getAge(){ return age; } int getSize(){ return size; } int getNumOfLegs(){ return numOfLegs; } }