|
Extension SDK 10.1.2 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Navigable | |
oracle.ide.config | Contains classes encapsulating JDevelopers's environment settings. |
oracle.ide.keyboard | Contains classes used by addins for providing accelerators for the commands they define. |
oracle.ide.panels | Provides a framework for building panel-based UI. |
oracle.ide.runner | Contains classes that allow addins some level of control on the IDE runner system. |
oracle.jdeveloper.ceditor | The Code Editor package contains the code editing implementation of the JDeveloper IDE. |
oracle.jdeveloper.compiler | Contains classes that allow addins to integrate their own build system translator. |
oracle.jdeveloper.model | Contains interfaces and classes implementing the Java specific portions of JDeveloper's data model. |
Uses of Navigable in oracle.ide.config |
Methods in oracle.ide.config that return Navigable | |
static Navigable[] |
IdeSettings.getNavigables() |
Navigable |
IdeSettings.getEnvironNavigable() |
Methods in oracle.ide.config with parameters of type Navigable | |
static void |
IdeSettings.registerUI(Navigable ui) |
static void |
IdeSettings.deregisterUI(Navigable ui) |
Uses of Navigable in oracle.ide.keyboard |
Subclasses of Navigable in oracle.ide.keyboard | |
class |
KeyStrokesConfigUI This is the Navigable for configurable shortcuts. |
Uses of Navigable in oracle.ide.panels |
Subclasses of Navigable in oracle.ide.panels | |
class |
DetailNavigable |
Methods in oracle.ide.panels that return Navigable | |
static Navigable |
TabbedPanel.createNavigable(java.lang.String labelText, Navigable[] tabs) Creates a Navigable instance for a TabbedPanel with the specified tabs. |
protected Navigable |
TabbedPanel.getCurrentNavigable() |
protected Navigable[] |
DetailNavigable.getChildNavigables() |
protected Navigable[] |
DetailNavigable.getDetailNavigables() |
protected Navigable |
MDDPanel.getCurrentNavigable() |
protected Navigable[] |
Navigable.getChildNavigables() By default, this returns the child Navigable s that were set when this DefaultNavigable was constructed. |
protected Navigable[] |
Navigable.getDetailNavigables() Returns null by default. |
protected static Navigable[] |
Navigable.sortNavigables(Navigable[] navigables, java.util.Comparator comparator) Sorts the specified Navigable array using the specified Navigable.NavigableComparator , and returns a sorted version of the array. |
Navigable[] |
NavigableRegistry.getNavigables() Returns an array whose contents are based on the Navigable objects that have been registered. |
Methods in oracle.ide.panels with parameters of type Navigable | |
static Navigable |
TabbedPanel.createNavigable(java.lang.String labelText, Navigable[] tabs) Creates a Navigable instance for a TabbedPanel with the specified tabs. |
void |
NavigableContext.pushScope(java.lang.String name, Namespace scope, Navigable nav) |
java.lang.String |
NavigableContext.pushAnonymousScope(Namespace scope, Navigable nav) |
protected void |
Navigable.copyToImpl(Navigable copy) Subclasses must implement an appropriate variant of this method if new member fields are introduced. |
void |
Navigable.addChildNavigable(Navigable childNavigable) Adds a new Navigable to the array of child Navigables. |
protected void |
Navigable.setChildNavigables(Navigable[] childNavigables) Accessor for the private data member that stores the current child Navigable s. |
protected void |
Navigable.appendChildNodes(javax.swing.tree.DefaultMutableTreeNode parent, Navigable[] children, NavigableContext nc) This method invokes createTreeNode(NavigableContext) on each Navigable specified in children and adds the resulting DefaultMutableTreeNode (if it is not null ) to the parent . |
protected static Navigable[] |
Navigable.sortNavigables(Navigable[] navigables, java.util.Comparator comparator) Sorts the specified Navigable array using the specified Navigable.NavigableComparator , and returns a sorted version of the array. |
void |
NavigableRegistry.registerUI(Navigable navigable) Registers the UI that is specified by the Navigable . |
void |
NavigableRegistry.deregisterUI(Navigable navigable) Deregisters the UI that is specified by the Navigable . |
Constructors in oracle.ide.panels with parameters of type Navigable | |
TabbedPanel(Navigable[] rootNavigables) |
|
TabbedPanel(Navigable[] rootNavigables, int tabPlacement) |
|
DetailNavigable(java.lang.String shortLabel, java.lang.Class traversableClass, Navigable[] childNavigables) |
|
DetailNavigable(java.lang.String shortLabel, java.lang.Class traversableClass, java.lang.Class[] constructorArgTypes, java.lang.Object[] constructorArgs, Navigable[] childNavigables) |
|
MDDPanel(Navigable rootNavigable) Constructs a new MDDPanel with a single root node in the master tree. |
|
MDDPanel(Navigable[] rootNavigables) Constructs a new MDDPanel with the specified nodes as root nodes in the master tree. |
|
MDDPanel(Navigable[] rootNavigables, boolean useDetailTree) Constructs a new MDDPanel with the specified nodes as root nodes in the master tree. |
|
TraversableContext(Navigable navigable, int direction) This constructor creates a new instance using the specified Navigable to determine the data context. |
|
Navigable(java.lang.String shortLabel, java.lang.Class traversableClass, Navigable[] childNavigables) Creates a new Navigable with the specified label, Traversable class, and array of child Navigable s. |
|
Navigable(java.lang.String shortLabel, java.lang.Class traversableClass, java.lang.Class[] constructorArgTypes, java.lang.Object[] constructorArgs, Navigable[] childNavigables) |
Uses of Navigable in oracle.ide.runner |
Methods in oracle.ide.runner that return Navigable | |
abstract Navigable |
Runner.getProjectSettingsRunnerNavigable() Returns the Project Settings Runner Navigable. |
Methods in oracle.ide.runner with parameters of type Navigable | |
abstract void |
Runner.setProjectSettingsRunnerNavigable(Navigable navigable) Sets the Project Settings Runner Navigable. |
Uses of Navigable in oracle.jdeveloper.ceditor |
Methods in oracle.jdeveloper.ceditor that return Navigable | |
Navigable |
CodeEditorAddin.getEditorNavigable() Fetches the main Editor navigable that is the parent of all other editor settings. |
Uses of Navigable in oracle.jdeveloper.compiler |
Methods in oracle.jdeveloper.compiler with parameters of type Navigable | |
void |
JCompiler.registerNavigable(Navigable navigable) Registers a Navigable as a child of the Compiler Navigable in the Project Settings Dialog. |
Uses of Navigable in oracle.jdeveloper.model |
Subclasses of Navigable in oracle.jdeveloper.model | |
static class |
JProjectSettings.DependenciesNavigable Need to override the dependencies navigable in order to avoid showing the dependencies panel for the default project. |
Methods in oracle.jdeveloper.model with parameters of type Navigable | |
static void |
JProjectSettingsPanel.addRootNavigable(Navigable navigable) Registers the specified Navigable object with the JProjectSettingsPanel as one of the root Navigable s to show in the project settings dialog. |
static void |
JProjectSettingsPanel.removeRootNavigable(Navigable navigable) Unregisters the specified Navigable object so that it will no longer be shown in the project settings dialog. |
static void |
JProjectSettings.registerCommonUI(Navigable ui) This method is part of the API that allows the common UI for the project properties dialog to be specified dynamically. |
static void |
JProjectConfiguration.registerConfigUI(Navigable ui) This method is part of the API that allows the per configuration UI for the project properties dialog to be specified dynamically. |
|
Extension SDK | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1997, 2004, Oracle. All rights reserved.