drawFill(context, g);
}
//draw the border
context.setLineWidth(2); // 7 pixel line width.
g.setColor(Color.DARK_GRAY);
g.draw(drawingPath);
//draw the text
g.setColor(Color.BLACK);
context.fillText(roomObject.getName(), bounds.getMinX() + 22, bounds.getMinY() + 22);
}