Esempio n. 1
0
 public static void main(String args[]) {
   Template templateA = new TemplateImplA();
   Template templateB = new TemplateImplB();
   templateA.action();
   templateB.action();
 }
Esempio n. 2
0
 public static void main(String[] args) {
   Template t = new TemplateImpl();
   t.action();
 }