if (move) {
double childX = x + clientX, childY = y + clientY;
if (justify.get() || fill.get() || center.get()) {
bounds[i] = new BoundingBox(childX, childY, childWidth, childHeight);
} else {
child.resizeRelocate(childX, childY, childWidth, childHeight);
}
}
y += spacing.get() + childHeight;
maxY = Math.max(maxY, y);
}