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