Uses of Interface
com.vaadin.ui.Field
-
Packages that use Field Package Description com.vaadin.data.fieldgroup com.vaadin.ui -
-
Uses of Field in com.vaadin.data.fieldgroup
Methods in com.vaadin.data.fieldgroup with type parameters of type Field Modifier and Type Method Description protected <T extends Field>
TFieldGroup. build(String caption, Class<?> dataType, Class<T> fieldType)Creates a field based on the given data type.<T extends Field>
TBeanFieldGroup. buildAndBind(String caption, Object propertyId, Class<T> fieldType)<T extends Field>
TFieldGroup. buildAndBind(String caption, Object propertyId, Class<T> fieldType)Builds a field using the given caption and binds it to the given property id using the field binder.protected <T extends Field>
TDefaultFieldGroupFieldFactory. createBooleanField(Class<T> fieldType)protected <T extends Field>
TDefaultFieldGroupFieldFactory. createDefaultField(Class<?> type, Class<T> fieldType)Fallback when no specific field has been created.<T extends Field>
TDefaultFieldGroupFieldFactory. createField(Class<?> type, Class<T> fieldType)<T extends Field>
TFieldGroupFieldFactory. createField(Class<?> dataType, Class<T> fieldType)Creates a field based on the data type that we want to editMethods in com.vaadin.data.fieldgroup that return Field Modifier and Type Method Description Field<?>FieldGroup. buildAndBind(Object propertyId)Builds a field and binds it to the given property id using the field binder.Field<?>FieldGroup. buildAndBind(String caption, Object propertyId)Builds a field using the given caption and binds it to the given property id using the field binder.Field<?>FieldGroup. getField(Object propertyId)Returns the field that is bound to the given property idMethods in com.vaadin.data.fieldgroup that return types with arguments of type Field Modifier and Type Method Description Collection<Field<?>>FieldGroup. getFields()Returns a collection of all fields that have been bound.Map<Field<?>,Validator.InvalidValueException>FieldGroup.CommitException. getInvalidFields()Returns a map containing the fields which failed validation and the exceptions the corresponding validators threw.Map<Field<?>,Validator.InvalidValueException>FieldGroup.FieldGroupInvalidValueException. getInvalidFields()Returns a map containing fields which failed validation and the exceptions the corresponding validators threw.Methods in com.vaadin.data.fieldgroup with parameters of type Field Modifier and Type Method Description voidBeanFieldGroup. bind(Field field, Object propertyId)voidFieldGroup. bind(Field<?> field, Object propertyId)Binds the field with the given propertyId from the current item.protected voidFieldGroup. clearField(Field<?> field)Clears field and any possible existing binding.protected voidBeanFieldGroup. configureField(Field<?> field)protected voidFieldGroup. configureField(Field<?> field)Configures a field with the settings set for this FieldBinder.ObjectFieldGroup. getPropertyId(Field<?> field)Returns the property id that is bound to the given fieldvoidBeanFieldGroup. unbind(Field<?> field)voidFieldGroup. unbind(Field<?> field)Detaches the field from its property id and removes it from this FieldBinder.Method parameters in com.vaadin.data.fieldgroup with type arguments of type Field Modifier and Type Method Description protected booleanDefaultFieldGroupFieldFactory. anySelect(Class<? extends Field> fieldType)Constructor parameters in com.vaadin.data.fieldgroup with type arguments of type Field Constructor Description FieldGroupInvalidValueException(Map<Field<?>,Validator.InvalidValueException> invalidValueExceptions)Constructs a new exception with the specified validation exceptions. -
Uses of Field in com.vaadin.ui
Classes in com.vaadin.ui that implement Field Modifier and Type Class Description classAbstractField<T>Abstract field component for implementing buffered property editors.classAbstractSelectA class representing a selection of items the user has selected in a UI.classAbstractTextFieldclassCheckBoxclassComboBoxA filtering dropdown single-select.classCustomField<T>AFieldwhose UI content can be constructed by the user, enabling the creation of e.g.classDateFieldA date editor component that can be bound to anyPropertythat is compatible withjava.util.Date.classFormDeprecated.As of 7.0, useFieldGroupinstead ofFormfor more flexibility.classInlineDateFieldA date entry component, which displays the actual date selector inline.classListSelectThis is a simple list select without, for instance, support for new items, lazyloading, and other advanced features.classNativeSelectThis is a simple drop-down select without, for instance, support for multiselect, new items, lazyloading, and other advanced features.classOptionGroupConfigures select to be used as an option group.classPasswordFieldA field that is used to enter secret text information like passwords.classPopupDateFieldA date entry component, which displays the actual date selector as a popup.classProgressBarShows the current progress of a long running task.classProgressIndicatorDeprecated.as of 7.1, useProgressBarcombined withUI#setPushMode(PushMode)orUI.setPollInterval(int)instead.classRichTextAreaA simple RichTextArea to edit HTML format text.classSelectDeprecated.As of 7.0.classSliderA component for selecting a numerical value within a range.classTableTableis used for representing data or components in a pageable and selectable table.classTextAreaA text field that supports multi line editing.classTextFieldA text editor component that can be bound to any bindable Property.classTreeTree component.classTreeTableclassTwinColSelectMultiselect component with two lists: left side for available items and right side for selected items.Methods in com.vaadin.ui with type parameters of type Field Modifier and Type Method Description <T extends Field>
TGrid.EditorFieldFactory. createField(Class<?> type, Class<T> fieldType)Methods in com.vaadin.ui that return Field Modifier and Type Method Description FieldDefaultFieldFactory. createField(Container container, Object itemId, Object propertyId, Component uiContext)Field<?>DefaultFieldFactory. createField(Item item, Object propertyId, Component uiContext)Field<?>FormFieldFactory. createField(Item item, Object propertyId, Component uiContext)Deprecated.Creates a field based on the item, property id and the component (most commonlyForm) where the Field will be presented.Field<?>TableFieldFactory. createField(Container container, Object itemId, Object propertyId, Component uiContext)Creates a field based on the Container, item id, property id and the component responsible for displaying the field (most commonlyTable).static Field<?>DefaultFieldFactory. createFieldByPropertyType(Class<?> type)Creates fields based on the property type.Field<?>Grid.Column. getEditorField()Returns the editor field used to edit the properties in this column when the item editor is active.FieldForm. getField(Object propertyId)Deprecated.Gets the field identified by the propertyid.Methods in com.vaadin.ui with parameters of type Field Modifier and Type Method Description voidForm. addField(Object propertyId, Field<?> field)Deprecated.Registers the field with the form and adds the field to the form layout.protected voidForm. attachField(Object propertyId, Field field)Deprecated.Adds the field to the form layout.protected voidForm. bindPropertyToField(Object propertyId, Property property, Field field)Deprecated.Binds an item property to a field.protected voidTable. bindPropertyToField(Object rowId, Object colId, Property property, Field field)Binds an item property to a field generated by TableFieldFactory.protected voidForm. detachField(Field field)Deprecated.Called when a form field is detached from a Form.Grid.ColumnGrid.Column. setEditorField(Field<?> editor)Sets the field component used to edit the properties in this column when the item editor is active.Constructors in com.vaadin.ui with parameters of type Field Constructor Description ValueChangeEvent(Field source)Constructs a new event object with the specified source field object.
-