COMP2396
Loading...
Searching...
No Matches
MyDrawPanelTestDrive.java
Go to the documentation of this file.
1import javax.swing.*;
2
3public class MyDrawPanelTestDrive {
4 public static void main(String[] args) {
5 JFrame frame = new JFrame();
6 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
7 MyDrawPanel drawPanel = new MyDrawPanel();
8 frame.add(drawPanel);
9 frame.setSize(300, 300);
10 frame.setVisible(true);
11 }
12}
static void main(String[] args)