We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.util.
Interface CurrentInstanceFallbackResolver<T>
-
Type Parameters:
T
- the type of the instances returned by this resolverAll Superinterfaces:
public interface CurrentInstanceFallbackResolver<T> extends Serializable
Fallback that is used to revolve current instances when they are not available by regular means.
This interface is used internally by the framework and it's not meant for public usage.
Since:
8.5.2
Author:
Vaadin Ltd.
See Also:
CurrentInstance.get(Class)
,CurrentInstance.defineFallbackResolver(Class, CurrentInstanceFallbackResolver)
-
-
Method Detail
-
resolve
T resolve()
Resolves a current instance for the type
T
.Returns:
the current instance, or
null
if none can be found
-
-