Package com.vaadin.ui
Interface PopupView.Content
-
- All Superinterfaces:
java.io.Serializable
- Enclosing class:
- PopupView
public static interface PopupView.Content extends java.io.SerializableUsed to deliver customized content-packages to the PopupView. These are dynamically loaded when they are redrawn. The user must take care that neither of these methods ever return null.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetMinimizedValueAsHTML()This should return a small view of the full data.ComponentgetPopupComponent()This should return the full Component representing the data.
-
-
-
Method Detail
-
getMinimizedValueAsHTML
java.lang.String getMinimizedValueAsHTML()
This should return a small view of the full data.- Returns:
- value in HTML format
-
getPopupComponent
Component getPopupComponent()
This should return the full Component representing the data.- Returns:
- a Component for the value
-
-