Oracle Data-aware Controls Reference

oracle.dacf.control
Interface NavigatedListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
NavigatedAdapter

public interface NavigatedListener
extends java.util.EventListener

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.

See Also:
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

navigatedInColumn

public 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.

Parameters:
event - A NAVIGATE_IN type of event with a column level change.

navigatedOutColumn

public 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.

Parameters:
event - A NAVIGATE_OUT type of event with a column level change.

navigatedInRow

public 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.

Parameters:
event - A NAVIGATE_IN type of event with a row level change.

navigatedOutRow

public 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.

Parameters:
event - A NAVIGATE_OUT type of event with a row level change.

navigatedInQueryView

public 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.

Parameters:
event - A NAVIGATE_IN type of event with a queryview level of change.

navigatedOutQueryView

public 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.

Parameters:
event - A NAVIGATE_OUT type of event with a queryview level change.

navigatedInSession

public 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.

Parameters:
event - A NAVIGATE_IN type of event with a work unit level of change.

navigatedOutSession

public 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.

Parameters:
event - A NAVIGATE_OUT type of event with a workunit level change.

Oracle Data-aware Controls Reference