class App { public static void main(String[] args) { Jatek jatek = new Jatek(new TxtTarolo()); jatek.mentes(); } } class Jatek { Tarolo tarolo; public Jatek(Tarolo tarolo) { this.tarolo = tarolo; } public void mentes() { tarolo.tarol(); } } class TxtTarolo implements Tarolo { public void tarol() { System.out.println("tárolás .txt fájlban"); } } interface Tarolo { public void tarol(); }