Package com.storedobject.vaadin
Interface ConstructedListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A listener that can be added to classes such as
AbstractDataForm
, HasColumns
etc. The
constructed(Object)
method will be invoked when the UI part of the class instance is constructed.- Author:
- Syam
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
constructed
(Object object) This method will be invoked when the UI part of the class instance is constructed.
-
Method Details
-
constructed
This method will be invoked when the UI part of the class instance is constructed.- Parameters:
object
- The instance to which this listener was added.
-