Java com.google.gwt.user.client.ui RootPanel fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.user.client.ui RootPanel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.user.client.ui RootPanel.

The text is from its open source code.

Method

voidadd(Widget w)
voidadd(Widget w, int left, int top)
Adds a widget to the panel at the specified position.
voiddetachNow(Widget widget)
Marks a widget as detached and removes it from the detach list.
voiddetachOnWindowClose(Widget widget)
Adds a widget to the detach list.
RootPanelget()
Gets the default root panel.
RootPanelget(String id)
Gets the root panel associated with a given browser element.
ElementgetBodyElement()
voidinsert(Widget w, int beforeIndex)
booleanisInDetachList(Widget widget)
Determines whether the given widget is in the detach list.
booleanremove(Widget w)
Overrides ComplexPanel#remove(Widget) to change the removed Widget's element back to static positioning.This is done so that any positioning changes to the widget that were done by the panel are undone when the widget is disowned from the panel.