class Boks { private T t; public void settVerdi(T t) { this.t = t; } public T hentVerdi() { return t; } }