public void fillRect(int x, int y, int width, int height) {
_gc.fillRectangle(x, y, width, height);
}
public void paintReplacedElement(RenderingContext c, BlockBox box) {
ReplacedElement replaced = box.getReplacedElement();
java.awt.Point location = replaced.getLocation();
if (replaced instanceof ImageReplacedElement) {
drawImage(((ImageReplacedElement) replaced).getImage(), location.x,
location.y);
} else if (replaced instanceof FormControlReplacementElement) {
SWTFormControl swtControl = ((FormControlReplacementElement) replaced)