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.flow.server.communication.
Class UidlWriter.ResolveContext
- java.lang.Object
-
- com.vaadin.flow.server.communication.UidlWriter.ResolveContext
-
All Implemented Interfaces:
Enclosing class:
public static class UidlWriter.ResolveContext extends Object implements Serializable
Provides context information for the resolve operations.
See Also:
-
-
Constructor Summary
Constructors Constructor and Description ResolveContext(VaadinService service, WebBrowser browser, AbstractTheme theme)
Creates a new context.
-
Method Summary
All Methods Modifier and Type Method and Description WebBrowser
getBrowser()
Gets the browser info used for resolving.
VaadinService
getService()
Gets the related Vaadin service.
AbstractTheme
getTheme()
Gets the theme used for resolving.
-
-
-
Constructor Detail
-
ResolveContext
public ResolveContext(VaadinService service, WebBrowser browser, AbstractTheme theme)
Creates a new context.
Parameters:
service
- the service which is resolvingbrowser
- the browsertheme
- the theme, ornull
for no theme
-
-
Method Detail
-
getService
public VaadinService getService()
Gets the related Vaadin service.
Returns:
the service
-
getBrowser
public WebBrowser getBrowser()
Gets the browser info used for resolving.
Returns:
the browser
-
getTheme
public AbstractTheme getTheme()
Gets the theme used for resolving.
Returns:
the theme or
null
for no theme
-
-