oracle.jbo.uicli.jui
Class JUPanelRowSetAdapter
java.lang.Object
|
+--oracle.jbo.uicli.jui.JUPanelRowSetAdapter
- All Implemented Interfaces:
- java.util.EventListener, JUPanelRowSetListener
- public class JUPanelRowSetAdapter
- extends java.lang.Object
- implements JUPanelRowSetListener
Default implementation for JUPanelValidationListener interface.
This implementation simply prints a diagnostic message for each
event it receives. JClient design time creates a subclass of this
adapter with overridden methods as per an application's choice
when the Event Inspector is used to generate JUPanelValidationEvent
listener code.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
JUPanelRowSetAdapter
public JUPanelRowSetAdapter()
rangeRefreshed
public void rangeRefreshed(JUIteratorBinding iter,
RangeRefreshEvent event)
- Invoked when the range changes.
- Specified by:
rangeRefreshed
in interface JUPanelRowSetListener
- Parameters:
event
- a description of the new ranges.
rangeScrolled
public void rangeScrolled(JUIteratorBinding iter,
ScrollEvent event)
- Invoked when the range is scrolled.
- Specified by:
rangeScrolled
in interface JUPanelRowSetListener
- Parameters:
event
- a description of the new range.
rowInserted
public void rowInserted(JUIteratorBinding iter,
InsertEvent event)
- Invoked when a row has been inserted.
- Specified by:
rowInserted
in interface JUPanelRowSetListener
- Parameters:
event
- a description of the new Row object.
rowDeleted
public void rowDeleted(JUIteratorBinding iter,
DeleteEvent event)
- Invoked when a row has been deleted.
- Specified by:
rowDeleted
in interface JUPanelRowSetListener
- Parameters:
event
- a description of the deleted Row object.
rowUpdated
public void rowUpdated(JUIteratorBinding iter,
UpdateEvent event)
- Invoked when an attribute of the row has been changed.
- Specified by:
rowUpdated
in interface JUPanelRowSetListener
- Parameters:
event
- a description of the modified Row object.
navigated
public void navigated(JUIteratorBinding iter,
NavigationEvent event)
- Invoked when the current-row designation changes.
- Specified by:
navigated
in interface JUPanelRowSetListener
- Parameters:
event
- a description of the new and previous current rows.