Package org.dellroad.stuff.vaadin8
Annotation Type FieldBuilder.AbstractSingleSelect
-
@Retention(RUNTIME) @Target(METHOD) @Documented public static @interface FieldBuilder.AbstractSingleSelect
Specifies how a Java property should be edited using anAbstractSingleSelect.- See Also:
FieldBuilder.AbstractListing,FieldBuilder
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanreadOnlyGet whether this field is read-only.booleanrequiredIndicatorVisibleGet whether the required indicator is visible.Class<? extends AbstractSingleSelect>typeGet theAbstractSingleSelecttype that will edit the property.
-
-
-
Element Detail
-
type
Class<? extends AbstractSingleSelect> type
Get theAbstractSingleSelecttype that will edit the property.Although this property has a default value, it must be overridden either in this annotation, or by also including a more specific annotation such as
FieldBuilder.ComboBox.- Returns:
- field type
- Default:
- com.vaadin.ui.AbstractSingleSelect.class
-
-
-
readOnly
boolean readOnly
Get whether this field is read-only.- Returns:
- true for read-only
- See Also:
AbstractSingleSelect.setReadOnly(boolean)
- Default:
- false
-
-
-
requiredIndicatorVisible
boolean requiredIndicatorVisible
Get whether the required indicator is visible.- Returns:
- true for visible
- See Also:
AbstractSingleSelect.setRequiredIndicatorVisible(boolean)
- Default:
- false
-
-