|
Oracle Data-aware Controls Reference | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This defines the interface for receiving Navigated events fired by a Control. A Control notifies its listeners whenever it looses or gains focus. The navigateOutXXX methods are called by the Control that is loosing focus. The navigateInXXX methods are called by the Control that is gaining focus.
NavigatedAdapter provides a empty implementation of this interface. Listeners that are not interested in receiving all the events should subclass from NavigatedAdapter and override appropriate methods.
NavigatedAdapter
Method Summary | |
void |
navigatedInColumn(NavigatedEvent event)
This method is called when Control receiving the focus is bound to a different column than the Control loosing the focus. |
void |
navigatedInQueryView(NavigatedEvent event)
This method is called when Control receiving the focus is bound to a different queryview than the Control loosing the focus. |
void |
navigatedInRow(NavigatedEvent event)
This method is called when Control receiving the focus is bound to a different row than the Control loosing the focus. |
void |
navigatedInSession(NavigatedEvent event)
This method is called when Control receiving the focus is bound to a different workunit than the Control loosing the focus. |
void |
navigatedOutColumn(NavigatedEvent event)
This method is called when Control loosing the focus is bound to a different column than the Control gaining the focus. |
void |
navigatedOutQueryView(NavigatedEvent event)
This method is called when Control loosing the focus is bound to a different queryview than the Control gaining the focus. |
void |
navigatedOutRow(NavigatedEvent event)
This method is called when Control loosing the focus is bound to a different column than the Control gaining the focus. |
void |
navigatedOutSession(NavigatedEvent event)
This method is called when Control loosing the focus is bound to a different workunit than the Control gaining the focus. |
Method Detail |
public void navigatedInColumn(NavigatedEvent event)
event
- A NAVIGATE_IN type of event with a column level change.public void navigatedOutColumn(NavigatedEvent event)
event
- A NAVIGATE_OUT type of event with a column level change.public void navigatedInRow(NavigatedEvent event)
event
- A NAVIGATE_IN type of event with a row level change.public void navigatedOutRow(NavigatedEvent event)
event
- A NAVIGATE_OUT type of event with a row level change.public void navigatedInQueryView(NavigatedEvent event)
event
- A NAVIGATE_IN type of event with a queryview level of
change.public void navigatedOutQueryView(NavigatedEvent event)
event
- A NAVIGATE_OUT type of event with a queryview level change.public void navigatedInSession(NavigatedEvent event)
event
- A NAVIGATE_IN type of event with a work unit level of
change.public void navigatedOutSession(NavigatedEvent event)
event
- A NAVIGATE_OUT type of event with a workunit level change.
|
Oracle Data-aware Controls Reference | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |