Package com.vaadin.client.ui
Interface PostLayoutListener
-
- All Known Implementing Classes:
FormLayoutConnector,PanelConnector,PopupViewConnector,WindowConnector
public interface PostLayoutListenerInterface implemented byComponentConnectorimplementations that want to know whenever a layout phase has ended. At the end of each layout phase,LayoutManagerinvokes thepostLayout()method for all registered component connectors implementing this interface.- Since:
- 7.0
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostLayout()Method invoked byLayoutManagerto notify the connector that a layout phase has ended.
-
-
-
Method Detail
-
postLayout
void postLayout()
Method invoked byLayoutManagerto notify the connector that a layout phase has ended. This method can be used to finalize internal layouting, but it is not allowed to change the its own external size or modify the conditions for any children.
-
-