home *** CD-ROM | disk | FTP | other *** search
- package java.awt;
-
- public class Canvas extends Component {
- public synchronized void addNotify() {
- if (super.peer == null) {
- super.peer = ((Component)this).getToolkit().createCanvas(this);
- }
-
- super.addNotify();
- }
-
- public void paint(Graphics var1) {
- var1.setColor(((Component)this).getBackground());
- var1.fillRect(0, 0, super.width, super.height);
- }
- }
-