Uses of Interface
com.vaadin.flow.component.PropertyDescriptor
Packages that use PropertyDescriptor
-
Uses of PropertyDescriptor in com.vaadin.flow.component
Methods in com.vaadin.flow.component that return PropertyDescriptorModifier and TypeMethodDescriptionstatic PropertyDescriptor<String, String> PropertyDescriptors.attributeWithDefault(String name, String defaultValue) Creates a descriptor for an attribute of the component's root element with a non-null default value.static PropertyDescriptor<String, String> PropertyDescriptors.attributeWithDefault(String name, String defaultValue, boolean removeDefault) Creates a descriptor for an attribute of the component's root element with a non-null default value.static PropertyDescriptor<String, Optional<String>> PropertyDescriptors.optionalAttributeWithDefault(String name, String defaultValue) Creates a descriptor for an optional attribute of the component's root element with a non-null default value.static PropertyDescriptor<String, Optional<String>> PropertyDescriptors.optionalAttributeWithDefault(String name, String defaultValue, boolean removeDefault) Creates a descriptor for an optional attribute of the component's root element with a non-null default value.static PropertyDescriptor<Boolean, Boolean> PropertyDescriptors.propertyWithDefault(String name, Boolean defaultValue) Creates a descriptor for a property of the component's root element with a non-null default value.static PropertyDescriptor<Double, Double> PropertyDescriptors.propertyWithDefault(String name, Double defaultValue) Creates a descriptor for a property of the component's root element with a non-null default value.static PropertyDescriptor<Integer, Integer> PropertyDescriptors.propertyWithDefault(String name, Integer defaultValue) Creates a descriptor for a property of the component's root element with a non-null default value.static PropertyDescriptor<String, String> PropertyDescriptors.propertyWithDefault(String name, String defaultValue) Creates a descriptor for a property of the component's root element with a non-null default value.Methods in com.vaadin.flow.component with parameters of type PropertyDescriptorModifier and TypeMethodDescriptionprotected <T> TComponent.get(PropertyDescriptor<?, T> descriptor) Gets the value of the given component property.protected <T> voidComponent.set(PropertyDescriptor<T, ?> descriptor, T value) Sets the value of the given component property.protected <T> voidText.set(PropertyDescriptor<T, ?> descriptor, T value)