public XMLRectangle(int x, int y, int width, int height) { this.location = new XMLPoint(x, y); this.size = new XMLSize(width, height); }
public XMLRectangle(XMLPoint location, XMLSize size) { this.location = location; this.size = size; }