Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

oracle.ide.panels
Class NavigableRegistry

java.lang.Object
  extended by oracle.ide.panels.NavigableRegistry

public class NavigableRegistry
extends java.lang.Object

A registry class for Navigables.

After registerUI(Navigable) is called to register some UI, subsequent calls to getNavigables() will include the Navigable in the returned array. Order of registration for Navigables is significant; the order of the Navigables in the returned array directly corresponds to the order in which they were registered. The returned array of Navigables is a copy of the registered Navigables, so any changes applied to them will not be reflected in the registry.


Constructor Summary
NavigableRegistry()
           
 
Method Summary
 void deregisterUI(Navigable navigable)
          Deregisters the UI that is specified by the Navigable.
 Navigable[] getNavigables()
          Returns an array whose contents are based on the Navigable objects that have been registered.
 void registerUI(Navigable navigable)
          Registers the UI that is specified by the Navigable.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NavigableRegistry

public NavigableRegistry()
Method Detail

registerUI

public void registerUI(Navigable navigable)
Registers the UI that is specified by the Navigable. After this method is called to register some UI, subsequent calls to getNavigables() will include the Navigable in the returned array. Order of registration for Navigables is significant; the order of the Navigables in the returned array directly corresponds to the order in which they were registered. The returned array of Navigables is a copy of the registered Navigables, so any changes applied to them will not be reflected in the registry.


deregisterUI

public void deregisterUI(Navigable navigable)
Deregisters the UI that is specified by the Navigable.


getNavigables

public Navigable[] getNavigables()
Returns an array whose contents are based on the Navigable objects that have been registered. The returned array contains copies of the registered Navigables, so that changes to the ones in the array will not be reflected in the registry. The order of the returned Navigables is based on the order of registration through registerUI(Navigable).


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

Copyright © 1997, 2011, Oracle. All rights reserved.