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