/Users/lyon/j4p/src/bookExamples/ch26Graphics/carl/logPolar/PaintPanel.java
|
1 /*
2 * Created by IntelliJ IDEA.
3 * User: root
4 * Date: Feb 8, 2002
5 * Time: 12:36:57 PM
6 * To change template for new class use
7 * Code Style | Class Templates options (Tools | IDE Options).
8 */
9 package bookExamples.ch26Graphics.carl.logPolar;
10
11 import bookExamples.ch26Graphics.carl.logPolar.Controller;
12
13 class PaintPanel extends javax.swing.JPanel {
14 private Controller main;
15
16 public PaintPanel(Controller main) {
17 this.main = main;
18 }
19
20 public void paintComponent(java.awt.Graphics g) {
21 super.paintComponent(g);
22 Controller.draw(main, g);
23 }
24 }
25