Uses of Interface
com.vaadin.flow.component.webcomponent.PropertyConfiguration
-
Packages that use PropertyConfiguration Package Description com.vaadin.flow.component com.vaadin.flow.component.webcomponent com.vaadin.flow.server.webcomponent -
-
Uses of PropertyConfiguration in com.vaadin.flow.component
Methods in com.vaadin.flow.component that return PropertyConfiguration Modifier and Type Method Description PropertyConfiguration<C,Boolean>
WebComponentExporter. addProperty(String name, boolean defaultValue)
Add anBoolean
property to the exported web component identified byname
.PropertyConfiguration<C,Double>
WebComponentExporter. addProperty(String name, double defaultValue)
Add anDouble
property to the exported web component identified byname
.PropertyConfiguration<C,Integer>
WebComponentExporter. addProperty(String name, int defaultValue)
Add anInteger
property to the exported web component identified byname
.PropertyConfiguration<C,elemental.json.JsonValue>
WebComponentExporter. addProperty(String name, elemental.json.JsonValue defaultValue)
Add anJsonValue
property to the exported web component identified byname
.PropertyConfiguration<C,String>
WebComponentExporter. addProperty(String name, String defaultValue)
Add anString
property to the exported web component identified byname
. -
Uses of PropertyConfiguration in com.vaadin.flow.component.webcomponent
Methods in com.vaadin.flow.component.webcomponent that return PropertyConfiguration Modifier and Type Method Description PropertyConfiguration<C,P>
PropertyConfiguration. onChange(SerializableBiConsumer<C,P> onChangeHandler)
Sets a Property change handler.PropertyConfiguration<C,P>
PropertyConfiguration. readOnly()
Mark the property as read-only.Methods in com.vaadin.flow.component.webcomponent with parameters of type PropertyConfiguration Modifier and Type Method Description <P extends Serializable>
voidWebComponent. setProperty(PropertyConfiguration<C,P> propertyConfiguration, P value)
Sets property value on the client-side to the givenvalue
. -
Uses of PropertyConfiguration in com.vaadin.flow.server.webcomponent
Classes in com.vaadin.flow.server.webcomponent that implement PropertyConfiguration Modifier and Type Class Description class
PropertyConfigurationImpl<C extends Component,P extends Serializable>
For internal use only.Methods in com.vaadin.flow.server.webcomponent that return PropertyConfiguration Modifier and Type Method Description PropertyConfiguration<C,P>
PropertyConfigurationImpl. onChange(SerializableBiConsumer<C,P> onChangeHandler)
PropertyConfiguration<C,P>
PropertyConfigurationImpl. readOnly()
-