public class WindowWithCircleUser { /** * Entry point of the program */ public static void main(String[] args) { WindowWithCircle w = new WindowWithCircle(); try{ Thread.sleep(2000); // stop for 2 s } catch(Exception e) { } w.moveOval(200, -20); } }