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.query.
Interface QueryDelegate.RowIdChangeNotifier
-
All Superinterfaces:
All Known Implementing Classes:
Enclosing interface:
public static interface QueryDelegate.RowIdChangeNotifier extends Serializable
The interface for adding and removing
RowIdChangeEvent
listeners. By implementing this interface a class explicitly announces that it will generate aRowIdChangeEvent
when it performs a database commit that may change the RowId.
-
-
Method Summary
All Methods Modifier and Type Method Description void
addListener(QueryDelegate.RowIdChangeListener listener)
Deprecated.
As of 7.0, replaced byaddRowIdChangeListener(RowIdChangeListener)
void
addRowIdChangeListener(QueryDelegate.RowIdChangeListener listener)
Adds a RowIdChangeListener for the object.
void
removeListener(QueryDelegate.RowIdChangeListener listener)
Deprecated.
As of 7.0, replaced byremoveRowIdChangeListener(RowIdChangeListener)
void
removeRowIdChangeListener(QueryDelegate.RowIdChangeListener listener)
Removes the specified RowIdChangeListener from the object.
-
-
-
Method Detail
-
addRowIdChangeListener
void addRowIdChangeListener(QueryDelegate.RowIdChangeListener listener)
Adds a RowIdChangeListener for the object.
Parameters:
listener
- listener to be added
-
addListener
@Deprecated void addListener(QueryDelegate.RowIdChangeListener listener)
Deprecated.As of 7.0, replaced byaddRowIdChangeListener(RowIdChangeListener)
-
removeRowIdChangeListener
void removeRowIdChangeListener(QueryDelegate.RowIdChangeListener listener)
Removes the specified RowIdChangeListener from the object.
Parameters:
listener
- listener to be removed
-
removeListener
@Deprecated void removeListener(QueryDelegate.RowIdChangeListener listener)
Deprecated.As of 7.0, replaced byremoveRowIdChangeListener(RowIdChangeListener)
-
-