1 | import javax.swing.JFrame; |
2 | |
3 | /** |
4 | This program tests the RectangleFrame. |
5 | */ |
6 | public class RectangleTest |
7 | { |
8 | public static void main(String[] args) |
9 | { |
10 | JFrame appFrame = new RectangleFrame(); |
11 | appFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
12 | appFrame.show(); |
13 | } |
14 | } |