public void drawRectangle(Bounds bds, String label) { context.drawRectangle(bds.getX(), bds.getY(), bds.getWidth(), bds.getHeight(), label); }
public void drawRectangle(int x, int y, int width, int height, String label) { context.drawRectangle(x, y, width, height, label); }