Decorator Example (2/4)
public class ShadowFigureWrapper extends FigureWrapper {
private Drawable myWrapee = null;
private int myThickness = 0;
ShadowFigureWrapper(Drawable wrapee, int thickness) {
// draw a shadow and call parent to draw the rest
public Drawable getWrapee() {
// give back wrapee object