package labwork9; /** * The WinAPIButton class is an implementation of the Button interface for WinAPI. */ public class WinAPIButton implements Button { @Override public void render() { System.out.println("Created a Button with WinAPI."); } }