We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.data.util.sqlcontainer.
Class RowItem
java.lang.Object
com.vaadin.data.util.sqlcontainer.RowItem
All Implemented Interfaces:
RowItem represents one row of a result set obtained from a QueryDelegate. Note that depending on the QueryDelegate in use this does not necessarily map into an actual row in a database table.
See Also:
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface com.vaadin.data.Item |
---|
Item.Editor, Item.PropertySetChangeEvent, Item.PropertySetChangeListener, Item.PropertySetChangeNotifier, Item.Viewer |
Constructor Summary | |
---|---|
RowItem(SQLContainer container,
RowId id,
Collection<ColumnProperty> properties)
|
Method Summary | |
---|---|
boolean |
addItemProperty(Object id,
Property property)
Adding properties is not supported. |
void |
commit()
|
SQLContainer |
getContainer()
|
RowId |
getId()
|
Property |
getItemProperty(Object id)
Gets the Property corresponding to the given Property ID stored in the Item. |
Collection<?> |
getItemPropertyIds()
Gets the collection of IDs of all Properties stored in the Item. |
boolean |
isModified()
|
boolean |
removeItemProperty(Object id)
Removing properties is not supported. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
RowItem
public RowItem(SQLContainer container,
RowId id,
Collection<ColumnProperty> properties)
Method Detail |
---|
getItemProperty
public Property getItemProperty(Object id)
- Specified by:
getItemProperty
in interfaceItem
- Parameters:
id
- identifier of the Property to get- Returns:
- the Property with the given ID or
null
Description copied from interface: Item
Gets the Property corresponding to the given Property ID stored in the
Item. If the Item does not contain the Property, null
is
returned.
getItemPropertyIds
public Collection<?> getItemPropertyIds()
- Specified by:
getItemPropertyIds
in interfaceItem
- Returns:
- unmodifiable collection containing IDs of the Properties stored the Item
Description copied from interface: Item
Gets the collection of IDs of all Properties stored in the Item.
addItemProperty
public boolean addItemProperty(Object id,
Property property)
throws UnsupportedOperationException
- Specified by:
addItemProperty
in interfaceItem
- Parameters:
id
- ID of the new Propertyproperty
- the Property to be added and associated with the id- Returns:
true
if the operation succeeded,false
if not- Throws:
UnsupportedOperationException
- if the operation is not supported.
Adding properties is not supported. Properties are generated by SQLContainer.
removeItemProperty
public boolean removeItemProperty(Object id)
throws UnsupportedOperationException
- Specified by:
removeItemProperty
in interfaceItem
- Parameters:
id
- ID of the Property to be removed- Returns:
true
if the operation succeeded- Throws:
UnsupportedOperationException
- if the operation is not supported.false
if not
Removing properties is not supported. Properties are generated by SQLContainer.
getId
public RowId getId()
getContainer
public SQLContainer getContainer()
isModified
public boolean isModified()
toString
public String toString()
commit
public void commit()