*
* @param x an int array of the horizontal origins
* @param y an int array of the vertical origins
*/
private void layoutComponents(LayoutPanel layoutPanel, int[] x, int[] y) {
Rectangle cellBounds = new Rectangle();
for (Iterator<Map.Entry<Widget, CellConstraints>> i = constraintMap.entrySet().iterator(); i.hasNext();) {
Map.Entry<Widget, CellConstraints> entry = i.next();
Widget component = entry.getKey();
CellConstraints constraints = entry.getValue();