1 | Observe that constructor #3 used a method of the DrawablePolygon class: public void addPoint( Point p ) { super.addPoint( p.x, p.y ); } |
2 | As you can see, it relies on an overloaded Polygon method of the same name |
3 | The next method is even more interesting... |