Java com.vaadin.client LayoutManager fields, constructors, methods, implement or subclass

Example usage for Java com.vaadin.client LayoutManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.vaadin.client LayoutManager.

The text is from its open source code.

Method

voidaddElementResizeListener(Element element, ElementResizeListener listener)
Adds a listener that will be notified whenever the size of a specific element changes.
LayoutManagerget(ApplicationConnection connection)
Gets the layout manager associated with the given ApplicationConnection .
intgetInnerHeight(Element element)
Gets the inner height (excluding margins, paddings and borders) of the given element, provided that it has been measured.
intgetInnerWidth(Element element)
Gets the inner width (excluding margins, paddings and borders) of the given element, provided that it has been measured.
intgetOuterHeight(Element element)
Gets the outer height (including margins, paddings and borders) of the given element, provided that it has been measured.
intgetOuterWidth(Element element)
Gets the outer width (including margins, paddings and borders) of the given element, provided that it has been measured.
voidregisterDependency(ManagedLayout owner, Element element)
Registers that a ManagedLayout is depending on the size of an Element.
voidremoveElementResizeListener(Element element, ElementResizeListener listener)
Removes an element resize listener from the provided element.
voidsetNeedsMeasure(ComponentConnector component)
Informs this LayoutManager that the size of a component might have changed.
voidunregisterDependency(ManagedLayout owner, Element element)
Registers that a ManagedLayout is no longer depending on the size of an Element.