blob: fdc0e2421bb0e4ce4c7abb215484e7a3103802e2 [file] [log] [blame]
package p;
public class Shape {
Rectangle fBounds;
Rectangle fInnerBounds;
public int area() {
int width= fBounds.getWidth();
int height= fBounds.getHeight();
return width*height;
}
public int filledArea() {
return area() - fInnerBounds.getWidth() * fInnerBounds.getHeight();
}
public boolean isSmallerThan(Rectangle rect) {
return area() < rect.getWidth() * rect.getHeight();
}
}