String type = strings[0];
int x = Integer.parseInt(strings[1]);
int y = Integer.parseInt(strings[2]);
Widget newGuy = makeWidget(type, true);
if (newGuy != null) {
newGuy.load(strings, helper);
enforceMinimumAndMaximumWidgetSizes(newGuy);
addWidget(newGuy, x, y, false, true);
}
return newGuy;
}