Interface PopOverView.ContentProvider
-
- Enclosing interface:
- PopOverView
public static interface PopOverView.ContentProviderA provider of content for the Popover. Providers may be asynchronous and hence results are passed to the PopOver with the callback.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgetContent(org.uberfire.client.callbacks.Callback<PopOverView.Content> callback)Called by the Popover when it is about to be shown.
-
-
-
Method Detail
-
getContent
void getContent(org.uberfire.client.callbacks.Callback<PopOverView.Content> callback)
Called by the Popover when it is about to be shown. Implementations should pass content for the PopOver in the callback.- Parameters:
callback- The callback used to get the content.
-
-