com.vaadin.ui.
Class AbstractSelect
java.lang.Object
com.vaadin.ui.AbstractComponent
com.vaadin.ui.AbstractField
com.vaadin.ui.AbstractSelect
All Implemented Interfaces:
Buffered, BufferedValidatable, Container, Container.ItemSetChangeListener, Container.ItemSetChangeNotifier, Container.PropertySetChangeListener, Container.PropertySetChangeNotifier, Container.Viewer, Property, Property.Editor, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer, Validatable, Action.ShortcutNotifier, MethodEventSource, Paintable, Sizeable, VariableOwner, Component, Component.Focusable, Field, Serializable, EventListener
Direct Known Subclasses:
ListSelect, NativeSelect, OptionGroup, Select, Table, Tree, TwinColSelect
- extends AbstractField
- implements Container, Container.Viewer, Container.PropertySetChangeListener, Container.PropertySetChangeNotifier, Container.ItemSetChangeNotifier, Container.ItemSetChangeListener
public abstract class AbstractSelect
A class representing a selection of items the user has selected in a UI. The
set of choices is presented as a set of Item
s in a
Container
.
A Select
component may be in single- or multiselect mode.
Multiselect mode means that more than one item can be selected
simultaneously.
Since:
5.0
Version:
6.8.18
Author:
Vaadin Ltd.
See Also:
Nested Class Summary | |
---|---|
class |
AbstractSelect.AbstractSelectTargetDetails
TargetDetails implementation for subclasses of AbstractSelect
that implement DropTarget . |
static class |
AbstractSelect.AcceptItem
This criterion accepts a only a Transferable that contains given
Item (practically its identifier) from a specific AbstractSelect. |
protected class |
AbstractSelect.CaptionChangeListener
This is a listener helper for Item and Property changes that should cause a repaint. |
class |
AbstractSelect.DefaultNewItemHandler
TODO refine doc This is a default class that handles adding new items that are typed by user to selects container. |
static interface |
AbstractSelect.Filtering
Interface for option filtering, used to filter options based on user entered value. |
static interface |
AbstractSelect.ItemDescriptionGenerator
Implement this interface and pass it to Tree.setItemDescriptionGenerator or Table.setItemDescriptionGenerator to generate mouse over descriptions ("tooltips") for the rows and cells in Table or for the items in Tree. |
static class |
AbstractSelect.MultiSelectMode
Multi select modes that controls how multi select behaves. |
static interface |
AbstractSelect.NewItemHandler
|
static class |
AbstractSelect.TargetItemIs
Criterion which accepts a drop only if the drop target is (one of) the given Item identifier(s). |
static class |
AbstractSelect.VerticalLocationIs
An accept criterion to accept drops only on a specific vertical location of an item. |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractField |
---|
AbstractField.FocusShortcut, AbstractField.ReadOnlyStatusChangeEvent |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractComponent |
---|
AbstractComponent.ComponentErrorEvent, AbstractComponent.ComponentErrorHandler |
Nested classes/interfaces inherited from interface com.vaadin.data.Container |
---|
Container.Editor, Container.Filter, Container.Filterable, Container.Hierarchical, Container.Indexed, Container.ItemSetChangeListener, Container.ItemSetChangeNotifier, Container.Ordered, Container.PropertySetChangeListener, Container.PropertySetChangeNotifier, Container.SimpleFilterable, Container.Sortable, Container.Viewer |
Nested classes/interfaces inherited from interface com.vaadin.ui.Field |
---|
Field.ValueChangeEvent |
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered |
---|
Buffered.SourceException |
Nested classes/interfaces inherited from interface com.vaadin.data.Property |
---|
Property.ConversionException, Property.Editor, Property.ReadOnlyException, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer |
Field Summary | |
---|---|
static int |
ITEM_CAPTION_MODE_EXPLICIT
Item caption mode: Captions must be explicitly specified. |
static int |
ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
Item caption mode: If an Item has a caption it's used, if not, Item's ID's String representation is used as caption. |
static int |
ITEM_CAPTION_MODE_ICON_ONLY
Item caption mode: Only icons are shown, captions are hidden. |
static int |
ITEM_CAPTION_MODE_ID
Item caption mode: Item's ID's String representation is used
as caption. |
static int |
ITEM_CAPTION_MODE_INDEX
Item caption mode: Index of the item is used as caption. |
static int |
ITEM_CAPTION_MODE_ITEM
Item caption mode: Item's String representation is used as
caption. |
static int |
ITEM_CAPTION_MODE_PROPERTY
Item caption mode: Item captions are read from property specified with setItemCaptionPropertyId . |
protected KeyMapper |
itemIdMapper
Keymapper used to map key values. |
protected Container |
items
Select options. |
Constructor Summary | |
---|---|
AbstractSelect()
Creates an empty Select. |
|
AbstractSelect(String caption)
Creates an empty Select with caption. |
|
AbstractSelect(String caption,
Collection<?> options)
Creates a new select that is filled from a collection of option values. |
|
AbstractSelect(String caption,
Container dataSource)
Creates a new select that is connected to a data-source. |
Method Summary | |
---|---|
boolean |
addContainerProperty(Object propertyId,
Class<?> type,
Object defaultValue)
Adds the new property to all items. |
Object |
addItem()
Creates a new item into container with container managed id. |
Item |
addItem(Object itemId)
Create a new item into container. |
void |
addListener(Container.ItemSetChangeListener listener)
Adds an Item set change listener for the object. |
void |
addListener(Container.PropertySetChangeListener listener)
Adds a new Property set change listener for this Container. |
void |
attach()
Notifies the component that it is connected to an application. |
void |
changeVariables(Object source,
Map<String,Object> variables)
Invoked when the value of a variable has changed. |
void |
containerItemSetChange(Container.ItemSetChangeEvent event)
Lets the listener know a Containers Item set has changed. |
void |
containerPropertySetChange(Container.PropertySetChangeEvent event)
Notifies this listener that the Containers contents has changed. |
boolean |
containsId(Object itemId)
Tests, if the collection contains an item with given id. |
void |
detach()
Detaches the component from application. |
protected void |
fireItemSetChange()
Fires the item set change event. |
protected void |
firePropertySetChange()
Fires the property set change event. |
protected AbstractSelect.CaptionChangeListener |
getCaptionChangeListener()
|
Container |
getContainerDataSource()
Gets the viewing data-source container. |
Property |
getContainerProperty(Object itemId,
Object propertyId)
Gets the Property identified by the given itemId and propertyId from the Container |
Collection<?> |
getContainerPropertyIds()
Gets the property Id collection from the container. |
Item |
getItem(Object itemId)
Gets the item from the container with given id. |
String |
getItemCaption(Object itemId)
Gets the caption of an item. |
int |
getItemCaptionMode()
Gets the item caption mode. |
Object |
getItemCaptionPropertyId()
Gets the item caption property. |
Resource |
getItemIcon(Object itemId)
Gets the item icon. |
Object |
getItemIconPropertyId()
Gets the item icon property. |
Collection<?> |
getItemIds()
Gets the item Id collection from the container. |
Collection<?> |
getListeners(Class<?> eventType)
Returns all listeners that are registered for the given event type or one of its subclasses. |
AbstractSelect.NewItemHandler |
getNewItemHandler()
TODO refine doc |
Object |
getNullSelectionItemId()
Returns the item id that represents null value of this select in single select mode. |
Class<?> |
getType()
Returns the type of the property. |
Class<?> |
getType(Object propertyId)
Gets the property type. |
Object |
getValue()
Gets the selected item id or in multiselect mode a set of selected ids. |
Collection<?> |
getVisibleItemIds()
Gets the visible item ids. |
protected boolean |
isEmpty()
For multi-selectable fields, also an empty collection of values is considered to be an empty field. |
boolean |
isMultiSelect()
Is the select in multiselect mode? In multiselect mode |
boolean |
isNewItemsAllowed()
Does the select allow adding new options by the user. |
boolean |
isNullSelectionAllowed()
Checks if null empty selection is allowed by the user. |
boolean |
isSelected(Object itemId)
Tests if an item is selected. |
void |
paintContent(PaintTarget target)
Paints the content of this component. |
protected void |
paintItem(PaintTarget target,
Object itemId)
|
boolean |
removeAllItems()
Removes all items from the container. |
boolean |
removeContainerProperty(Object propertyId)
Removes the property from all items. |
boolean |
removeItem(Object itemId)
Removes the Item identified by ItemId from the Container. |
void |
removeListener(Container.ItemSetChangeListener listener)
Removes the Item set change listener from the object. |
void |
removeListener(Container.PropertySetChangeListener listener)
Removes a previously registered Property set change listener. |
void |
sanitizeSelection()
Checks that the current selection is valid, i.e. |
void |
select(Object itemId)
Selects an item. |
void |
setContainerDataSource(Container newDataSource)
Sets the Container that serves as the data source of the viewer. |
void |
setItemCaption(Object itemId,
String caption)
Override the caption of an item. |
void |
setItemCaptionMode(int mode)
Sets the item caption mode. |
void |
setItemCaptionPropertyId(Object propertyId)
Sets the item caption property. |
void |
setItemIcon(Object itemId,
Resource icon)
Sets the icon for an item. |
void |
setItemIconPropertyId(Object propertyId)
Sets the item icon property. |
void |
setMultiSelect(boolean multiSelect)
Sets the multiselect mode. |
void |
setNewItemHandler(AbstractSelect.NewItemHandler newItemHandler)
TODO refine doc Setter for new item handler that is called when user adds new item in newItemAllowed mode. |
void |
setNewItemsAllowed(boolean allowNewOptions)
Enables or disables possibility to add new options by the user. |
void |
setNullSelectionAllowed(boolean nullSelectionAllowed)
Allow or disallow empty selection by the user. |
void |
setNullSelectionItemId(Object nullSelectionItemId)
Sets the item id that represents null value of this select. |
void |
setValue(Object newValue)
Sets the visible value of the property. |
protected void |
setValue(Object newValue,
boolean repaintIsNotNeeded)
Sets the visible value of the property. |
int |
size()
Gets the number of visible Items in the Container. |
void |
unselect(Object itemId)
Unselects an item. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.vaadin.ui.Field |
---|
getDescription, setCaption, setDescription |
Field Detail |
---|
ITEM_CAPTION_MODE_ID
public static final int ITEM_CAPTION_MODE_ID
- See Also:
- Constant Field Values
Item caption mode: Item's ID's String
representation is used
as caption.
ITEM_CAPTION_MODE_ITEM
public static final int ITEM_CAPTION_MODE_ITEM
- See Also:
- Constant Field Values
Item caption mode: Item's String
representation is used as
caption.
ITEM_CAPTION_MODE_INDEX
public static final int ITEM_CAPTION_MODE_INDEX
- See Also:
- Constant Field Values
Item caption mode: Index of the item is used as caption. The index mode
can only be used with the containers implementing the
Container.Indexed
interface.
ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
public static final int ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
- See Also:
- Constant Field Values
Item caption mode: If an Item has a caption it's used, if not, Item's
ID's String
representation is used as caption. This is
the default.
ITEM_CAPTION_MODE_EXPLICIT
public static final int ITEM_CAPTION_MODE_EXPLICIT
- See Also:
- Constant Field Values
Item caption mode: Captions must be explicitly specified.
ITEM_CAPTION_MODE_ICON_ONLY
public static final int ITEM_CAPTION_MODE_ICON_ONLY
- See Also:
- Constant Field Values
Item caption mode: Only icons are shown, captions are hidden.
ITEM_CAPTION_MODE_PROPERTY
public static final int ITEM_CAPTION_MODE_PROPERTY
- See Also:
- Constant Field Values
Item caption mode: Item captions are read from property specified with
setItemCaptionPropertyId
.
items
protected Container items
Select options.
itemIdMapper
protected KeyMapper itemIdMapper
Keymapper used to map key values.
Constructor Detail |
---|
AbstractSelect
public AbstractSelect()
Creates an empty Select. The caption is not used.
AbstractSelect
public AbstractSelect(String caption)
Creates an empty Select with caption.
AbstractSelect
public AbstractSelect(String caption,
Container dataSource)
- Parameters:
caption
- the Caption of the component.dataSource
- the Container datasource to be selected from by this select.
Creates a new select that is connected to a data-source.
AbstractSelect
public AbstractSelect(String caption,
Collection<?> options)
- Parameters:
caption
- the Caption of this field.options
- the Collection containing the options.
Creates a new select that is filled from a collection of option values.
Method Detail |
---|
paintContent
public void paintContent(PaintTarget target)
throws PaintException
- Overrides:
paintContent
in classAbstractField
- Parameters:
target
- the Paint Event.- Throws:
PaintException
- if the paint operation failed.
Paints the content of this component.
paintItem
protected void paintItem(PaintTarget target,
Object itemId)
throws PaintException
- Throws:
PaintException
changeVariables
public void changeVariables(Object source,
Map<String,Object> variables)
- Specified by:
changeVariables
in interfaceVariableOwner
- Overrides:
changeVariables
in classAbstractField
- Parameters:
source
- the Source of the variable change. This is the origin of the event. For example in Web Adapter this is the request.variables
- the Mapping from variable names to new variable values.- See Also:
AbstractComponent.changeVariables(java.lang.Object, java.util.Map)
Invoked when the value of a variable has changed.
setNewItemHandler
public void setNewItemHandler(AbstractSelect.NewItemHandler newItemHandler)
- Parameters:
newItemHandler
-
TODO refine doc Setter for new item handler that is called when user adds new item in newItemAllowed mode.
getNewItemHandler
public AbstractSelect.NewItemHandler getNewItemHandler()
- Returns:
TODO refine doc
getVisibleItemIds
public Collection<?> getVisibleItemIds()
Gets the visible item ids. In Select, this returns list of all item ids, but can be overriden in subclasses if they paint only part of the items to the terminal or null if no items is visible.
getType
public Class<?> getType()
- Specified by:
getType
in interfaceProperty
- Specified by:
getType
in classAbstractField
- Returns:
- the Type of the property.
Returns the type of the property. getValue
and
setValue
methods must be compatible with this type: one can
safely cast getValue
to given type and pass any variable
assignable to this type as a parameter to setValue
.
getValue
public Object getValue()
- Specified by:
getValue
in interfaceProperty
- Overrides:
getValue
in classAbstractField
- Returns:
- the current value of the field.
- See Also:
AbstractField.getValue()
Gets the selected item id or in multiselect mode a set of selected ids.
setValue
public void setValue(Object newValue)
throws Property.ReadOnlyException,
Property.ConversionException
- Specified by:
setValue
in interfaceProperty
- Overrides:
setValue
in classAbstractField
- Parameters:
newValue
- the New selected item or collection of selected items.- Throws:
Property.ReadOnlyException
- if the object is in read-only modeProperty.ConversionException
- if newValue can't be converted into the Property's native type directly or through String- See Also:
AbstractField.setValue(java.lang.Object)
Sets the visible value of the property.
The value of the select is the selected item id. If the select is in multiselect-mode, the value is a set of selected item keys. In multiselect mode all collections of id:s can be assigned.
setValue
protected void setValue(Object newValue,
boolean repaintIsNotNeeded)
throws Property.ReadOnlyException,
Property.ConversionException
- Overrides:
setValue
in classAbstractField
- Parameters:
newValue
- the New selected item or collection of selected items.repaintIsNotNeeded
- True if caller is sure that repaint is not needed.- Throws:
Property.ReadOnlyException
Property.ConversionException
- See Also:
com.vaadin.ui.AbstractField#setValue(java.lang.Object, java.lang.Boolean)
Sets the visible value of the property.
The value of the select is the selected item id. If the select is in multiselect-mode, the value is a set of selected item keys. In multiselect mode all collections of id:s can be assigned.
getItem
public Item getItem(Object itemId)
- Parameters:
itemId
- the item id.- Returns:
- the item from the container.
Gets the item from the container with given id. If the container does not contain the requested item, null is returned.
getItemIds
public Collection<?> getItemIds()
- Specified by:
getItemIds
in interfaceContainer
- Returns:
- the Collection of item ids.
Gets the item Id collection from the container.
getContainerPropertyIds
public Collection<?> getContainerPropertyIds()
- Specified by:
getContainerPropertyIds
in interfaceContainer
- Returns:
- the Collection of property ids.
Gets the property Id collection from the container.
getType
public Class<?> getType(Object propertyId)
- Parameters:
propertyId
- the Id identifying the property.- Returns:
- data type of the Properties
- See Also:
Container.getType(java.lang.Object)
Gets the property type.
size
public int size()
- Returns:
- number of Items in the Container
Description copied from interface: Container
Gets the number of visible Items in the Container. Filtering can hide items so that they will not be visible through the container API.
containsId
public boolean containsId(Object itemId)
- Specified by:
containsId
in interfaceContainer
- Parameters:
itemId
- the Id the of item to be tested.- Returns:
- boolean indicating if the Container holds the specified Item
Tests, if the collection contains an item with given id.
getContainerProperty
public Property getContainerProperty(Object itemId,
Object propertyId)
- Specified by:
getContainerProperty
in interfaceContainer
- Parameters:
itemId
- ID of the visible Item which contains the PropertypropertyId
- ID of the Property to retrieve- Returns:
- Property with the given ID or
null
- See Also:
Container.getContainerProperty(Object, Object)
Gets the Property identified by the given itemId and propertyId from the Container
addContainerProperty
public boolean addContainerProperty(Object propertyId,
Class<?> type,
Object defaultValue)
throws UnsupportedOperationException
- Specified by:
addContainerProperty
in interfaceContainer
- Parameters:
propertyId
- ID of the Propertytype
- Data type of the new PropertydefaultValue
- The value all created Properties are initialized to- Returns:
- True if the operation succeeded.
- Throws:
UnsupportedOperationException
- if the container does not support explicitly adding container properties- See Also:
Container.addContainerProperty(java.lang.Object, java.lang.Class, java.lang.Object)
Adds the new property to all items. Adds a property with given id, type and default value to all items in the container. This functionality is optional. If the function is unsupported, it always returns false.
removeAllItems
public boolean removeAllItems()
throws UnsupportedOperationException
- Specified by:
removeAllItems
in interfaceContainer
- Returns:
- True if the operation succeeded.
- Throws:
UnsupportedOperationException
- if the container does not support removing all items- See Also:
Container.removeAllItems()
Removes all items from the container. This functionality is optional. If the function is unsupported, it always returns false.
addItem
public Object addItem()
throws UnsupportedOperationException
- Returns:
- the Id of the created item or null in case of failure.
- Throws:
UnsupportedOperationException
- if adding an item without an explicit item ID is not supported by the container- See Also:
Container.addItem()
Creates a new item into container with container managed id. The id of the created new item is returned. The item can be fetched with getItem() method. if the creation fails, null is returned.
addItem
public Item addItem(Object itemId)
throws UnsupportedOperationException
- Parameters:
itemId
- the Identification of the item to be created.- Returns:
- the Created item with the given id, or null in case of failure.
- Throws:
UnsupportedOperationException
- if adding an item with an explicit item ID is not supported by the container- See Also:
Container.addItem(java.lang.Object)
Create a new item into container. The created new item is returned and ready for setting property values. if the creation fails, null is returned. In case the container already contains the item, null is returned. This functionality is optional. If the function is unsupported, it always returns null.
removeItem
public boolean removeItem(Object itemId)
throws UnsupportedOperationException
- Specified by:
removeItem
in interfaceContainer
- Parameters:
itemId
- ID of the Item to remove- Returns:
true
if the operation succeeded,false
if not- Throws:
UnsupportedOperationException
- if the container does not support removing individual items
Description copied from interface: Container
Removes the Item identified by ItemId
from the Container.
Containers that support filtering should also allow removing an item that is currently filtered out.
This functionality is optional.
sanitizeSelection
public void sanitizeSelection()
Checks that the current selection is valid, i.e. the selected item ids exist in the container. Updates the selection if one or several selected item ids are no longer available in the container.
removeContainerProperty
public boolean removeContainerProperty(Object propertyId)
throws UnsupportedOperationException
- Specified by:
removeContainerProperty
in interfaceContainer
- Parameters:
propertyId
- ID of the Property to remove- Returns:
- True if the operation succeeded.
- Throws:
UnsupportedOperationException
- if the container does not support removing container properties- See Also:
Container.removeContainerProperty(java.lang.Object)
Removes the property from all items. Removes a property with given id from all the items in the container. This functionality is optional. If the function is unsupported, it always returns false.
setContainerDataSource
public void setContainerDataSource(Container newDataSource)
- Specified by:
setContainerDataSource
in interfaceContainer.Viewer
- Parameters:
newDataSource
- the new data source.- See Also:
Container.Viewer.setContainerDataSource(Container)
Sets the Container that serves as the data source of the viewer. As a side-effect the fields value (selection) is set to null due old selection not necessary exists in new Container.
getContainerDataSource
public Container getContainerDataSource()
- Specified by:
getContainerDataSource
in interfaceContainer.Viewer
- Returns:
- data source Container
- See Also:
Container.Viewer.getContainerDataSource()
Gets the viewing data-source container.
isMultiSelect
public boolean isMultiSelect()
- Returns:
- the Value of property multiSelect.
Is the select in multiselect mode? In multiselect mode
setMultiSelect
public void setMultiSelect(boolean multiSelect)
- Parameters:
multiSelect
- the New value of property multiSelect.
Sets the multiselect mode. Setting multiselect mode false may loose selection information: if selected items set contains one or more selected items, only one of the selected items is kept as selected.
isNewItemsAllowed
public boolean isNewItemsAllowed()
- Returns:
- True if additions are allowed.
Does the select allow adding new options by the user. If true, the new options can be added to the Container. The text entered by the user is used as id. Note that data-source must allow adding new items.
setNewItemsAllowed
public void setNewItemsAllowed(boolean allowNewOptions)
- Parameters:
allowNewOptions
- the New value of property allowNewOptions.
Enables or disables possibility to add new options by the user.
setItemCaption
public void setItemCaption(Object itemId,
String caption)
- Parameters:
itemId
- the id of the item to be recaptioned.caption
- the New caption.
Override the caption of an item. Setting caption explicitly overrides id, item and index captions.
getItemCaption
public String getItemCaption(Object itemId)
- Parameters:
itemId
- the id of the item to be queried.- Returns:
- the caption for specified item.
Gets the caption of an item. The caption is generated as specified by the
item caption mode. See setItemCaptionMode()
for more
details.
setItemIcon
public void setItemIcon(Object itemId,
Resource icon)
- Parameters:
itemId
- the id of the item to be assigned an icon.icon
- the icon to use or null.
Sets the icon for an item.
getItemIcon
public Resource getItemIcon(Object itemId)
- Parameters:
itemId
- the id of the item to be assigned an icon.- Returns:
- the icon for the item or null, if not specified.
Gets the item icon.
setItemCaptionMode
public void setItemCaptionMode(int mode)
ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
: Items Id-objectstoString
is used as item caption. If caption is explicitly specified, it overrides the id-caption.ITEM_CAPTION_MODE_ID
: Items Id-objectstoString
is used as item caption.ITEM_CAPTION_MODE_ITEM
: Item-objectstoString
is used as item caption.ITEM_CAPTION_MODE_INDEX
: The index of the item is used as item caption. The index mode can only be used with the containers implementingContainer.Indexed
interface.ITEM_CAPTION_MODE_EXPLICIT
: The item captions must be explicitly specified.ITEM_CAPTION_MODE_PROPERTY
: The item captions are read from property, that must be specified withsetItemCaptionPropertyId
.- Parameters:
mode
- the One of the modes listed above.
Sets the item caption mode.
The mode can be one of the following ones:
ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
is the default
mode.
getItemCaptionMode
public int getItemCaptionMode()
ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
: Items Id-objectstoString
is used as item caption. If caption is explicitly specified, it overrides the id-caption.ITEM_CAPTION_MODE_ID
: Items Id-objectstoString
is used as item caption.ITEM_CAPTION_MODE_ITEM
: Item-objectstoString
is used as item caption.ITEM_CAPTION_MODE_INDEX
: The index of the item is used as item caption. The index mode can only be used with the containers implementingContainer.Indexed
interface.ITEM_CAPTION_MODE_EXPLICIT
: The item captions must be explicitly specified.ITEM_CAPTION_MODE_PROPERTY
: The item captions are read from property, that must be specified withsetItemCaptionPropertyId
.- Returns:
- the One of the modes listed above.
Gets the item caption mode.
The mode can be one of the following ones:
ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID
is the default
mode.
setItemCaptionPropertyId
public void setItemCaptionPropertyId(Object propertyId)
- Parameters:
propertyId
- the id of the property.
Sets the item caption property.
Setting the id to a existing property implicitly sets the item caption
mode to ITEM_CAPTION_MODE_PROPERTY
. If the object is in
ITEM_CAPTION_MODE_PROPERTY
mode, setting caption property id
null resets the item caption mode to
ITEM_CAPTION_EXPLICIT_DEFAULTS_ID
.
Setting the property id to null disables this feature. The id is null by default
.
getItemCaptionPropertyId
public Object getItemCaptionPropertyId()
- Returns:
- the Id of the property used as item caption source.
Gets the item caption property.
setItemIconPropertyId
public void setItemIconPropertyId(Object propertyId)
throws IllegalArgumentException
- Parameters:
propertyId
- the id of the property that specifies icons for items or null- Throws:
IllegalArgumentException
- If the propertyId is not in the container or is not of a valid type
Sets the item icon property.
If the property id is set to a valid value, each item is given an icon got from the given property of the items. The type of the property must be assignable to Resource.
Note : The icons set with setItemIcon
function override the
icons from the property.
Setting the property id to null disables this feature. The id is null by default
.
getItemIconPropertyId
public Object getItemIconPropertyId()
- Returns:
- the Id of the property containing the item icons.
Gets the item icon property.
If the property id is set to a valid value, each item is given an icon got from the given property of the items. The type of the property must be assignable to Icon.
Note : The icons set with setItemIcon
function override the
icons from the property.
Setting the property id to null disables this feature. The id is null by default
.
isSelected
public boolean isSelected(Object itemId)
- Parameters:
itemId
- the Id the of the item to be tested.- See Also:
getNullSelectionItemId()
,setNullSelectionItemId(Object)
Tests if an item is selected.
In single select mode testing selection status of the item identified by
getNullSelectionItemId()
returns true if the value of the
property is null.
select
public void select(Object itemId)
- Parameters:
itemId
- the identifier of Item to be selected.- See Also:
getNullSelectionItemId()
,setNullSelectionItemId(Object)
Selects an item.
In single select mode selecting item identified by
getNullSelectionItemId()
sets the value of the property to null.
unselect
public void unselect(Object itemId)
- Parameters:
itemId
- the identifier of the Item to be unselected.- See Also:
getNullSelectionItemId()
,setNullSelectionItemId(Object)
Unselects an item.
containerPropertySetChange
public void containerPropertySetChange(Container.PropertySetChangeEvent event)
- Specified by:
containerPropertySetChange
in interfaceContainer.PropertySetChangeListener
- Parameters:
event
- Change event.- See Also:
Container.PropertySetChangeListener.containerPropertySetChange(com.vaadin.data.Container.PropertySetChangeEvent)
Notifies this listener that the Containers contents has changed.
addListener
public void addListener(Container.PropertySetChangeListener listener)
- Specified by:
addListener
in interfaceContainer.PropertySetChangeNotifier
- Parameters:
listener
- The new Listener to be registered- See Also:
Container.PropertySetChangeNotifier.addListener(com.vaadin.data.Container.PropertySetChangeListener)
Adds a new Property set change listener for this Container.
removeListener
public void removeListener(Container.PropertySetChangeListener listener)
- Specified by:
removeListener
in interfaceContainer.PropertySetChangeNotifier
- Parameters:
listener
- Listener to be removed- See Also:
Container.PropertySetChangeNotifier.removeListener(com.vaadin.data.Container.PropertySetChangeListener)
Removes a previously registered Property set change listener.
addListener
public void addListener(Container.ItemSetChangeListener listener)
- Specified by:
addListener
in interfaceContainer.ItemSetChangeNotifier
- Parameters:
listener
- listener to be added- See Also:
Container.ItemSetChangeNotifier.addListener(com.vaadin.data.Container.ItemSetChangeListener)
Adds an Item set change listener for the object.
removeListener
public void removeListener(Container.ItemSetChangeListener listener)
- Specified by:
removeListener
in interfaceContainer.ItemSetChangeNotifier
- Parameters:
listener
- listener to be removed- See Also:
Container.ItemSetChangeNotifier.removeListener(com.vaadin.data.Container.ItemSetChangeListener)
Removes the Item set change listener from the object.
getListeners
public Collection<?> getListeners(Class<?> eventType)
- Overrides:
getListeners
in classAbstractComponent
- Parameters:
eventType
- The type of event to return listeners for.- Returns:
- A collection with all registered listeners. Empty if no listeners are found.
Description copied from class: AbstractComponent
Returns all listeners that are registered for the given event type or one of its subclasses.
containerItemSetChange
public void containerItemSetChange(Container.ItemSetChangeEvent event)
- Specified by:
containerItemSetChange
in interfaceContainer.ItemSetChangeListener
- Parameters:
event
- change event text- See Also:
Container.ItemSetChangeListener.containerItemSetChange(com.vaadin.data.Container.ItemSetChangeEvent)
Lets the listener know a Containers Item set has changed.
firePropertySetChange
protected void firePropertySetChange()
Fires the property set change event.
fireItemSetChange
protected void fireItemSetChange()
Fires the item set change event.
isEmpty
protected boolean isEmpty()
- Overrides:
isEmpty
in classAbstractField
- See Also:
AbstractField.isEmpty().
For multi-selectable fields, also an empty collection of values is considered to be an empty field.
setNullSelectionAllowed
public void setNullSelectionAllowed(boolean nullSelectionAllowed)
- Parameters:
nullSelectionAllowed
- whether or not to allow empty selection- See Also:
setNullSelectionItemId(Object)
,isNullSelectionAllowed()
Allow or disallow empty selection by the user. If the select is in
single-select mode, you can make an item represent the empty selection by
calling setNullSelectionItemId()
. This way you can for
instance set an icon and caption for the null selection item.
isNullSelectionAllowed
public boolean isNullSelectionAllowed()
- Returns:
- whether or not empty selection is allowed
- See Also:
setNullSelectionAllowed(boolean)
Checks if null empty selection is allowed by the user.
getNullSelectionItemId
public Object getNullSelectionItemId()
- Returns:
- the Object Null value item id.
- See Also:
setNullSelectionItemId(Object)
,isSelected(Object)
,select(Object)
Returns the item id that represents null value of this select in single select mode.
Data interface does not support nulls as item ids. Selecting the item identified by this id is the same as selecting no items at all. This setting only affects the single select mode.
setNullSelectionItemId
public void setNullSelectionItemId(Object nullSelectionItemId)
- Parameters:
nullSelectionItemId
- the nullSelectionItemId to set.- See Also:
getNullSelectionItemId()
,isSelected(Object)
,select(Object)
Sets the item id that represents null value of this select.
Data interface does not support nulls as item ids. Selecting the item identified by this id is the same as selecting no items at all. This setting only affects the single select mode.
attach
public void attach()
- Specified by:
attach
in interfaceComponent
- Overrides:
attach
in classAbstractField
- See Also:
AbstractField.attach()
Notifies the component that it is connected to an application.
detach
public void detach()
- Specified by:
detach
in interfaceComponent
- Overrides:
detach
in classAbstractField
- See Also:
AbstractComponent.detach()
Detaches the component from application.
getCaptionChangeListener
protected AbstractSelect.CaptionChangeListener getCaptionChangeListener()