package com.iluwatar; /** * * Adapter (GnomeEngineer) converts the interface of the * target class (GoblinGlider) into suitable one. * */ public class App { public static void main( String[] args ) { GnomeEngineer engineer = new GnomeEngineer(); engineer.operateDevice(); } }