public class Dyr { String name; public Dyr(String name) { this.name = name; } public String getName() { return name; } }