Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

Package javax.ide

The ide package is where all JSR 198 packages are rooted.

See:
          Description

Interface Summary
IDEListener Extension writers request notification of IDE events by implementing this interface and registering their IDE listener with the extension deployment descriptor.
Identifiable Identifiable objects are IDE components that can be identified by a unique string identifier.
 

Class Summary
IDE This is the object that centralizes general IDE environment information and services.
IDEConstants IDE constants.
IDEEvent The IDEEvent is the parameter passed to the IDEListener methods when the active state of the IDE application has changed.
Service Services provide access to distinct areas of functionality in the IDE for an extension developer.
 

Package javax.ide Description

The ide package is where all JSR 198 packages are rooted. There are two types of packages in the ide package:

By convention, the latter are named spi and are located under the corresponding extension writer package. The extension writer packages contain interfaces and classes intended for extension writers to implement and/or use, while the spi packages contain abstract classes and default implementations that must be extended by IDE service providers in order to support JSR 198. Extension writers should never import classes from the spi packages.

The extension writer packages can be grouped into two categories:

Extension hook packages contain the interfaces and classes encapsulating an IDE's integration hooks. Integration hooks are the points an IDE defines where extension writers can integrate new IDE functionality. These packages are:

In general, these packages contain "feature" and "listener" interfaces that are usually implemented by the extension writer, and a "manager" interface that must be implemented by the IDE service provider. The "manager" interface provides the API to access and manipulate the extension writer "feature" interface implementations. For example, the editor package declares the Editor "feature" interface, the EditorListener "listener" interface, and the EditorManager "manager" interface. The first two are implemented by extension writers, while the third one by IDE service providers. The IDE service provider implementation can be found under the spi packages. A similar pattern repeats in the other extension hook packages.

Support packages contain supporting interfaces and classes whose implementation are generally provided by IDE service providers and are mainly for the use of extension writers. These packages are:

In addition to the packages described above, the ide package contains a number of interfaces and classes. One of those interfaces, the IDE interface is the central repository where all other IDE services are accessed. Extension writers can access any of the service implementations using the IDE interface.

Another class in the IDEConstants class. Extension writers can find there IDE constants identifying menus, and views.


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

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