Exemplo n.º 1
0
 public static void consumer(Interface iface) {
   iface.doSomething();
   iface.somethingElse("bonobo");
 }
Exemplo n.º 2
0
 public static void consumer(Interface iface) {
   iface.doSomething();
   System.out.println("---------------------------------");
   iface.somethingElse("bonobo");
 }