arrayInfo.command_CREATE(newItem, referenceItem);
}
public void command_MOVE(FormItemInfo moveItem, FormItemInfo referenceItem) throws Exception {
AbstractArrayObjectInfo arrayInfo = getItemsArrayInfo();
arrayInfo.command_MOVE(moveItem, referenceItem);
}
public void command_BOUNDS(FormItemInfo item, Point location, Dimension size) throws Exception {
Assert.isTrue(getChildren().contains(item), "%s is not child of %s.", item, this);
if (size != null) {