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