public class Kj?ret?y { // Egenskaper: id (String), merke (String), modell (String), ?r (int) protected final String id; protected String merke; protected String modell; protected int ?r; // Konstrukt?r public Kj?ret?y(String id, String merke, String modell, int ?r) { this.id = id; this.merke = merke; this.modell = modell; this.?r = ?r; } // Hent metoder public int hent?r() { return ?r; } public String hentId() { return id; } public String hentMerke() { return merke; } public String hentModell() { return modell; } // Sett metoder public void sett?r(int nytt?r) { ?r = nytt?r; } public void settMerke(String merke) { this.merke = merke; } public void settModell(String modell) { this.modell = modell; } }