public boolean contains (int X, int Y, int W, int H)

Checks whether this Rectangle entirely contains the Rectangle at the specified location (X,Y) with the specified dimensions (W,H).

Parameters:
X    the specified X coordinate
Y    the specified Y coordinate
W    the width of the Rectangle
H    the height of the Rectangle

Returns:  true if the Rectangle specified by (X, Y, W, H) is entirely enclosed inside this Rectangle; false otherwise.

Since:  1.1