import java.awt.Point; class Wall extends StationaryObject { int width; int height; Wall(Point loc, int w, int h) { super(loc); this.width = w; this.height = h; } public String toString() { return super.toString() + " with width " + this.width + " and height " + this.height; } char getAppearance() { return '#'; } }