* @throws IndexOutOfBoundsException if <code>beforeIndex</code> is out of
* range
*/
public void insert(Widget w, int beforeIndex) {
final LayoutPanel layoutPanel = getLayoutPanel();
layoutPanel.insert(w, new FillLayoutData(), beforeIndex);
w.setVisible(false);
}