|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Item | |
|---|---|
| com.vaadin.data | Contains interfaces for the data layer, mainly for binding typed data and data collections to components, and for validating data. |
| com.vaadin.data.fieldgroup | |
| com.vaadin.data.util | Provides implementations of Property, Item and Container interfaces, and utilities for the data layer. |
| com.vaadin.data.util.filter | |
| com.vaadin.data.util.sqlcontainer | |
| com.vaadin.event | |
| com.vaadin.ui | |
| Uses of Item in com.vaadin.data |
|---|
| Methods in com.vaadin.data that return Item | |
|---|---|
Item |
Container.addItem(java.lang.Object itemId)
Creates a new Item with the given ID in the Container. |
Item |
Container.Ordered.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
Adds a new item after the given item. |
Item |
Container.Indexed.addItemAt(int index,
java.lang.Object newItemId)
Adds a new item at given index (in the filtered view). |
Item |
Item.PropertySetChangeEvent.getItem()
Retrieves the Item whose contents has been modified. |
Item |
Container.getItem(java.lang.Object itemId)
Gets the Item with the given Item ID from the Container. |
Item |
Item.Viewer.getItemDataSource()
Gets the Item serving as the data source of the viewer. |
| Methods in com.vaadin.data with parameters of type Item | |
|---|---|
boolean |
Container.Filter.passesFilter(java.lang.Object itemId,
Item item)
Check if an item passes the filter (in-memory filtering). |
void |
Item.Viewer.setItemDataSource(Item newDataSource)
Sets the Item that serves as the data source of the viewer. |
| Uses of Item in com.vaadin.data.fieldgroup |
|---|
| Methods in com.vaadin.data.fieldgroup that return Item | |
|---|---|
Item |
FieldGroup.getItemDataSource()
Gets the item used by this FieldBinder. |
| Methods in com.vaadin.data.fieldgroup with parameters of type Item | |
|---|---|
void |
BeanFieldGroup.setItemDataSource(Item item)
|
void |
FieldGroup.setItemDataSource(Item itemDataSource)
Updates the item that is used by this FieldBinder. |
| Constructors in com.vaadin.data.fieldgroup with parameters of type Item | |
|---|---|
FieldGroup(Item itemDataSource)
Constructs a field binder that uses the given data source. |
|
| Uses of Item in com.vaadin.data.util |
|---|
| Classes in com.vaadin.data.util with type parameters of type Item | |
|---|---|
class |
AbstractInMemoryContainer<ITEMIDTYPE,PROPERTYIDCLASS,ITEMCLASS extends Item>
Abstract Container class that handles common functionality for
in-memory containers. |
| Classes in com.vaadin.data.util that implement Item | |
|---|---|
class |
BeanItem<BT>
A wrapper class for adding the Item interface to any Java Bean. |
class |
FilesystemContainer.FileItem
A Item wrapper for files in a filesystem. |
protected class |
GeneratedPropertyContainer.GeneratedPropertyItem
Item implementation for generated properties. |
class |
PropertysetItem
Class for handling a set of identified Properties. |
| Methods in com.vaadin.data.util that return Item | |
|---|---|
Item |
FilesystemContainer.addItem(java.lang.Object itemId)
|
Item |
IndexedContainer.addItem(java.lang.Object itemId)
|
Item |
HierarchicalContainer.addItem(java.lang.Object itemId)
|
Item |
ContainerOrderedWrapper.addItem(java.lang.Object itemId)
Registers a new Item by its ID to the underlying container and to the ordering. |
Item |
AbstractInMemoryContainer.addItem(java.lang.Object itemId)
|
Item |
GeneratedPropertyContainer.addItem(java.lang.Object itemId)
|
Item |
ContainerHierarchicalWrapper.addItem(java.lang.Object itemId)
Adds a new Item by its ID to the underlying container and to the hierarchy. |
Item |
IndexedContainer.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
|
Item |
ContainerOrderedWrapper.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
|
Item |
AbstractInMemoryContainer.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
|
Item |
GeneratedPropertyContainer.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
|
Item |
IndexedContainer.addItemAt(int index,
java.lang.Object newItemId)
|
Item |
AbstractInMemoryContainer.addItemAt(int index,
java.lang.Object newItemId)
|
Item |
GeneratedPropertyContainer.addItemAt(int index,
java.lang.Object newItemId)
|
Item |
FilesystemContainer.getItem(java.lang.Object itemId)
|
Item |
ContainerOrderedWrapper.getItem(java.lang.Object itemId)
|
Item |
GeneratedPropertyContainer.getItem(java.lang.Object itemId)
|
Item |
ContainerHierarchicalWrapper.getItem(java.lang.Object itemId)
|
protected Item |
IndexedContainer.getUnfilteredItem(java.lang.Object itemId)
|
| Methods in com.vaadin.data.util with parameters of type Item | |
|---|---|
protected int |
DefaultItemSorter.compareProperty(java.lang.Object propertyId,
boolean sortDirection,
Item item1,
Item item2)
Compares the property indicated by propertyId in the items
indicated by item1 and item2 for order. |
protected void |
IndexedContainer.fireItemAdded(int position,
java.lang.Object itemId,
Item item)
|
abstract T |
PropertyValueGenerator.getValue(Item item,
java.lang.Object itemId,
java.lang.Object propertyId)
Returns value for given Item. |
protected void |
IndexedContainer.registerNewItem(int index,
java.lang.Object newItemId,
Item item)
|
| Constructors in com.vaadin.data.util with parameters of type Item | |
|---|---|
GeneratedPropertyContainer.GeneratedProperty(Item item,
java.lang.Object propertyId,
java.lang.Object itemId,
PropertyValueGenerator<T> generator)
|
|
GeneratedPropertyContainer.GeneratedPropertyItem(java.lang.Object itemId,
Item item)
|
|
| Uses of Item in com.vaadin.data.util.filter |
|---|
| Methods in com.vaadin.data.util.filter with parameters of type Item | |
|---|---|
boolean |
Not.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
Or.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
Like.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
Compare.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
IsNull.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
And.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
SimpleStringFilter.passesFilter(java.lang.Object itemId,
Item item)
|
boolean |
Between.passesFilter(java.lang.Object itemId,
Item item)
|
| Uses of Item in com.vaadin.data.util.sqlcontainer |
|---|
| Classes in com.vaadin.data.util.sqlcontainer that implement Item | |
|---|---|
class |
RowItem
RowItem represents one row of a result set obtained from a QueryDelegate. |
| Methods in com.vaadin.data.util.sqlcontainer that return Item | |
|---|---|
Item |
SQLContainer.addItem(java.lang.Object itemId)
|
Item |
SQLContainer.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
|
Item |
SQLContainer.addItemAt(int index,
java.lang.Object newItemId)
|
Item |
SQLContainer.getItem(java.lang.Object itemId)
|
Item |
SQLContainer.getItemUnfiltered(java.lang.Object itemId)
Bypasses in-memory filtering to return items that are cached in memory. |
Item |
SQLContainer.getReferencedItem(java.lang.Object itemId,
SQLContainer refdCont)
Fetches the referenced item from the target SQLContainer. |
| Uses of Item in com.vaadin.event |
|---|
| Methods in com.vaadin.event that return Item | |
|---|---|
Item |
ItemClickEvent.getItem()
Gets the item on which the click event occurred. |
| Constructors in com.vaadin.event with parameters of type Item | |
|---|---|
ItemClickEvent(Component source,
Item item,
java.lang.Object itemId,
java.lang.Object propertyId,
com.vaadin.shared.MouseEventDetails details)
|
|
| Uses of Item in com.vaadin.ui |
|---|
| Classes in com.vaadin.ui that implement Item | |
|---|---|
class |
Form
Deprecated. As of 7.0, use FieldGroup instead of Form for
more flexibility. |
| Methods in com.vaadin.ui that return Item | |
|---|---|
Item |
AbstractSelect.addItem(java.lang.Object itemId)
Create a new item into container. |
Item |
Table.addItemAfter(java.lang.Object previousItemId,
java.lang.Object newItemId)
Adds new item after the given item. |
Item |
Grid.RowReference.getItem()
Gets the item for the row. |
Item |
Grid.CellReference.getItem()
Gets the item for the row of the cell. |
Item |
AbstractSelect.getItem(java.lang.Object itemId)
Gets the item from the container with given id. |
Item |
Form.getItemDataSource()
Deprecated. |
| Methods in com.vaadin.ui with parameters of type Item | |
|---|---|
Field<?> |
DefaultFieldFactory.createField(Item item,
java.lang.Object propertyId,
Component uiContext)
|
Field<?> |
FormFieldFactory.createField(Item item,
java.lang.Object propertyId,
Component uiContext)
Deprecated. Creates a field based on the item, property id and the component (most commonly Form) where the Field will be presented. |
void |
Form.setItemDataSource(Item newDataSource)
Deprecated. Sets the item datasource for the form. |
void |
Form.setItemDataSource(Item newDataSource,
java.util.Collection<?> propertyIds)
Deprecated. Set the item datasource for the form, but limit the form contents to specified properties of the item. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||