| Package | Description | 
|---|---|
| javax.ide.build | 
 The build system interfaces that extension writers need to implement in order to listen for build events. 
 | 
| javax.ide.command | 
 Command execution classes. 
 | 
| javax.ide.debug | 
 Debbuger API used by extensions to initiate a debugging session. 
 | 
| javax.ide.editor | 
 The editor interfaces that extension writers need to implement in order to add a new editor to an IDE. 
 | 
| javax.ide.log | 
 The interfaces that extension writers use and need to implement in order to add a new log pages to an IDE. 
 | 
| javax.ide.property | 
 The property page extension classes that extension writers need to implement in order to add their own property panels to an IDE preferences UI and to the project settings UI. 
 | 
| javax.ide.view | 
 IDE view support classes and interfaces. 
 | 
| javax.ide.wizard | 
 The wizard interfaces that extension writers use and need to implement in order to add a new wizards to an IDE. 
 | 
| oracle.ide.javaxide | 
 Bridges the standard IDE API (JSR198) to JDeveloper's extension API. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Context | 
BuildEvent.getContext()
Get the context currently used to build. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract void | 
BuildSystem.build(Context context)
Start a build of the objects selected in the  
Context. | 
| Constructor and Description | 
|---|
BuildEvent(BuildSystem buildSystem, Context context)
Constructor. 
 | 
BuildEvent(BuildSystem buildSystem, Context context, boolean success)
Constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected Context | 
Command.getContext()
Gets the ide current  
Context. | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
InvokeHandler.invoke(IDEAction action, Context context)
Invoke the specified action in the specified context. 
 | 
void | 
Command.setContext(Context context)
Sets  
Context associated with command | 
boolean | 
UpdateHandler.update(IDEAction action, Context context)
Update the specified action based on the specified context. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract Context | 
Connector.getContext()
Get the  
Context used to create this connector. | 
| Modifier and Type | Method and Description | 
|---|---|
abstract ClientConnector | 
Debugger.getClientConnector(Context context)
Creates a client connector for a debugging session. 
 | 
abstract ServerConnector | 
Debugger.getServerConnector(Context context)
Creates a server connector for a debugging session. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Context | 
Editor.getContext()
Get the context for this editor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
Editor.open(Context context)
This method is called to open the editor. 
 | 
abstract Editor | 
EditorManager.openEditor(Context context, java.lang.String typeID)
Opens a document in the editor identified by the given editor type identifier. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract LogPage | 
LogManager.openPage(Context context, java.lang.String pageClass)
Open and display the page identified by the given type identifier. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
PropertyPage.onEntry(java.util.prefs.Preferences preferences, Context context)
Method called when this page is selected by the user. 
 | 
void | 
PropertyPage.onExit(java.util.prefs.Preferences preferences, Context context)
Method called when users leave this page for another page and when they press the dialog's OK button. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract Context | 
View.getContext()
Gets the current view context. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
URISelectionDialog | 
IDEDialogs.getDirectorySelectionDialog(java.lang.String title, java.net.URI location, Context context, GUIPanel parent)
Creates a "directory selection" dialog. 
 | 
URISelectionDialog | 
IDEDialogs.getFileSelectionDialog(java.lang.String title, java.net.URI location, Context context, GUIPanel parent)
Creates a "file selection" dialog. 
 | 
boolean | 
URISelectionDialog.Validator.validate(java.net.URI[] uri, Context context)
Method called when the user presses the OK button of the  
URISelectionDialog. | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
Wizard.invoke(Context context)
Invokes the object, usually called by the IDE from the button that launches the wizard. 
 | 
boolean | 
WizardManager.invokeWizard(Context context, java.lang.String id)
Invokes a wizard with the specified execution context and parameters. 
 | 
boolean | 
Wizard.isAvailable(Context context)
Called when the availability of the wizard must be determined. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
abstract Context | 
ModelInteropUtils.getJavaxIdeContext(Context oracleContext)
Get the Javax IDE context for an Oracle IDE context. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Context | 
ModelInteropUtils.getOracleContext(Context jideContext)
Get the Oracle IDE context for a Javax IDE context. 
 |