(Graphics g)
| 55 | e -> notifier.notifyObservers(Box.this)); |
| 56 | } |
| 57 | @Override public void paintComponent(Graphics g) { |
| 58 | super.paintComponent(g); |
| 59 | g.setColor(color); |
| 60 | Dimension s = getSize(); |
| 61 | g.fillRect(0, 0, s.width, s.height); |
| 62 | } |
| 63 | @Override |
| 64 | public void update(Observable o, Object arg) { |
| 65 | Box clicked = (Box)arg; |