public class Blokk implements BlokkInterface{ T element; public Blokk(T element){ this.element = element; } public void skrivElement(){ System.out.println(element); } public T hentElement(){ return element; } }