Package org.zkoss.zk.ui.ext
Interface BeforeCompose
-
public interface BeforeCompose
Implemented by a component if it wants to know when ZK loader created it. If this interface is implemented,beforeCompose()
is called before ZK loader sets any property or creates any child components.On the other hand,
AfterCompose.afterCompose()
is called after all properties are set and child components are created.- Since:
- 5.0.6
- Author:
- tomyeh
- See Also:
AfterCompose
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
beforeCompose()
Called by ZK Loader before it sets any properties, and before creates any child component.
-