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

Example usage for Java com.google.gwt.user.client.ui AbsolutePanel 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 AbsolutePanel.

The text is from its open source code.

Subclass

com.google.gwt.user.client.ui.AbsolutePanel has subclasses.
Click this link to see all its subclasses.

Constructor

AbsolutePanel()
Creates an empty absolute panel.

Method

voidadd(Widget w, int left, int top)
Adds a widget to the panel at the specified position.
voidadd(IsWidget w, int left, int top)
Overloaded version for IsWidget.
voidadd(Widget w)
intgetWidgetLeft(Widget w)
Gets the position of the left outer border edge of the widget relative to the left outer border edge of the panel.
intgetWidgetTop(Widget w)
Gets the position of the top outer border edge of the widget relative to the top outer border edge of the panel.
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.
voidsetWidgetPosition(Widget w, int left, int top)
Sets the position of the specified child widget.