com.vaadin.flow.component.polymertemplate.
Class InjectablePolymerElementInitializer
- java.lang.Object
-
- com.vaadin.flow.component.template.internal.AbstractInjectableElementInitializer
-
- com.vaadin.flow.component.polymertemplate.InjectablePolymerElementInitializer
-
@Deprecated public class InjectablePolymerElementInitializer extends AbstractInjectableElementInitializer
Deprecated.InjectableLitElementInitializer
should be used for Lit templates since polymer support is deprecated, we recommend you to useLitTemplate
instead. Read more details from the Vaadin blog.Initialize a polymer template element with data.
For internal use only. May be renamed or removed in a future release.
Since:
Author:
Vaadin Ltd
-
-
Constructor Summary
Constructors Constructor Description InjectablePolymerElementInitializer(Element element, Class<? extends Component> templateClass)
Deprecated.
Creates an initializer for the
element
.
-
Method Summary
All Methods Modifier and Type Method Description protected boolean
isStaticAttribute(String name, String value)
Deprecated.
Checks whether the attribute declaration is an attribute with a static value ( so it can be set on the serve side).
-
Methods inherited from class com.vaadin.flow.component.template.internal.AbstractInjectableElementInitializer
accept, getElement
-
-
-
-
Method Detail
-
isStaticAttribute
protected boolean isStaticAttribute(String name, String value)
Deprecated.Description copied from class:
AbstractInjectableElementInitializer
Checks whether the attribute declaration is an attribute with a static value ( so it can be set on the serve side).
Specified by:
isStaticAttribute
in classAbstractInjectableElementInitializer
Parameters:
name
- the template attribute namevalue
- the template attribute valueReturns:
whether the attribute declaration is an attribute with a static value
-
-