Package com.vaadin.flow.server.frontend
Class FallbackChunk.CssImportData
- java.lang.Object
-
- com.vaadin.flow.server.frontend.FallbackChunk.CssImportData
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- FallbackChunk
public static class FallbackChunk.CssImportData extends Object implements Serializable
Css data stored in fallback chunk.- Author:
- Vaadin Ltd
- See Also:
CssImport, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CssImportData(String value, String id, String include, String themeFor)Creates a new instance using provided values for css data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetId()StringgetInclude()StringgetThemeFor()StringgetValue()inthashCode()
-
-
-
Constructor Detail
-
CssImportData
public CssImportData(String value, String id, String include, String themeFor)
Creates a new instance using provided values for css data.- Parameters:
value- location of the file with the CSS content, notnullid- the 'id' of the new 'dom-module' created, may benullinclude- the 'id' of a module to include in the generated 'custom-style', may benullthemeFor- the tag name of the themable element that the generated 'dom-module' will target, may benull- See Also:
CssImport
-
-