abstract class Kjoretoy { protected String id; public void settId(String id) { this.id = id; } public String hentId() { return id; } }