com.vaadin.flow.component.template.internal.
Interface DeprecatedPolymerPublishedEventHandler
-
All Superinterfaces:
All Known Implementing Classes:
@Deprecated public interface DeprecatedPolymerPublishedEventHandler extends Serializable
Deprecated.Polymer template support is deprecated - we recommend you to useLitTemplate
instead. Read more details from the Vaadin blog.Service for injecting the polymer event handler when the module is available.
For internal use only. May be renamed or removed in a future release.
Since:
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description Object
getTemplateItem(Component template, elemental.json.JsonObject argValue, Type convertedType)
Deprecated.
Get the template model object and type.
boolean
isTemplateModelValue(Component instance, elemental.json.JsonValue argValue, Class<?> convertedType)
Deprecated.
Validate that the given Component instance is a PolymerTemplate and that the value can be converted.
-
-
-
Method Detail
-
isTemplateModelValue
boolean isTemplateModelValue(Component instance, elemental.json.JsonValue argValue, Class<?> convertedType)
Deprecated.Validate that the given Component instance is a PolymerTemplate and that the value can be converted.
Parameters:
instance
- Component to be validatedargValue
- received valueconvertedType
- target type that value should be converted toReturns:
true if valid template model value
-
getTemplateItem
Object getTemplateItem(Component template, elemental.json.JsonObject argValue, Type convertedType)
Deprecated.Get the template model object and type.
Parameters:
template
- polymer template to get model fromargValue
- argument valueconvertedType
- value typeReturns:
the provided model value
Throws:
IllegalStateException
- if the component is not attached to the UI
-
-