//---------------------------------------------------------------------------- // // MovingEllipse.java // // written by: Simon Parsons // last modified: 3rd August 2012 // // Building on that moving ellipse example // import javax.swing.*; // Use the swing library public class MoreEllipse{ public static void main(String[] args){ JFrame frame = new JFrame("Watch this!"); // Set up frame frame.getContentPane().add(new MovingGraphicsComponent2()); // Create new component frame.setSize(400,400); // Set frame size frame.setVisible(true); // Make frame visible } }