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