added adapter sample

This commit is contained in:
Ilkka Seppala
2014-08-11 22:07:16 +03:00
parent ec8d730113
commit 13e6589471
5 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.iluwatar;
public class App
{
public static void main( String[] args )
{
GnomeEngineerAdapter engineer = new GnomeEngineerAdapter();
engineer.flyGoblinGlider();
}
}