class DJComponent { int x; // x-coordinate of the upper-left corner int y; // y-coordinate of the upper-left corner int width; // width of the component int height; // height of the component Color color; // foreground color of the component boolean visible; // visible or not }