com.vaadin.data.util.sqlcontainer.query
Interface QueryDelegate.RowIdChangeEvent

All Superinterfaces:
Serializable
All Known Implementing Classes:
TableQuery.RowIdChangeEvent
Enclosing interface:
QueryDelegate

public static interface QueryDelegate.RowIdChangeEvent
extends Serializable

An Event object specifying the old and new RowId of an added item after the addition has been successfully committed.


Method Summary
 RowId getNewRowId()
          Gets the new, possibly database assigned RowId of the added row that raised this event.
 RowId getOldRowId()
          Gets the old (temporary) RowId of the added row that raised this event.
 

Method Detail

getOldRowId

RowId getOldRowId()
Gets the old (temporary) RowId of the added row that raised this event.

Returns:
old RowId

getNewRowId

RowId getNewRowId()
Gets the new, possibly database assigned RowId of the added row that raised this event.

Returns:
new RowId


Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.