SimpleNode r = par.jjtGetChild(x);
if (r.getlayoutObject() != null && r.getlayoutObject().x > greaterThen) {
r.getlayoutObject().x += diffx;
}
for (int c = 0; c < r.jjtGetNumChildren(); c++) {
if (r.jjtGetChild(c).getlayoutObject() != null && r.jjtGetChild(c).getlayoutObject().x > greaterThen) {
r.jjtGetChild(c).getlayoutObject().x += diffx;
}
}
}
}