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.frontend.
Class FallbackChunk
- java.lang.Object
-
- com.vaadin.flow.server.frontend.FallbackChunk
-
All Implemented Interfaces:
public class FallbackChunk extends Object implements Serializable
Fall back chunk info.
For internal use only. May be renamed or removed in a future release.
Author:
Vaadin Ltd
See Also:
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FallbackChunk.CssImportData
Css data stored in fallback chunk.
-
Constructor Summary
Constructors Constructor Description FallbackChunk(Collection<String> modules, Collection<FallbackChunk.CssImportData> css)
Creates a new instance using info about modules and css data in fallback chunk.
-
Method Summary
All Methods Modifier and Type Method Description Set<FallbackChunk.CssImportData>
getCssImports()
Gets a set of fallback css data.
Set<String>
getModules()
Gets a set of all fallback modules.
-
-
-
Constructor Detail
-
FallbackChunk
public FallbackChunk(Collection<String> modules, Collection<FallbackChunk.CssImportData> css)
Creates a new instance using info about modules and css data in fallback chunk.
Parameters:
modules
- fallback modules, notnull
css
- fallback css data, notnull
-
-
Method Detail
-
getModules
public Set<String> getModules()
Gets a set of all fallback modules.
Returns:
a set of fallback modules
-
getCssImports
public Set<FallbackChunk.CssImportData> getCssImports()
Gets a set of fallback css data.
Returns:
a set of fallback css data
-
-