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

E17493-01

Uses of Interface
oracle.ide.controller.Controller

Packages that use Controller
oracle.ide Contains classes that allow addins access to the IDE integration objects. 
oracle.ide.ceditor The Code Editor package contains the code editing implementation of the JDeveloper IDE. 
oracle.ide.cmd Contains classes implementing several JDeveloper commands. 
oracle.ide.controller   
oracle.ide.db.transfer.generate Contains classes that control the targets available for generating database objects to in the IDE. 
oracle.ide.docking Contains interfaces and classes responsible for the dockable behavior provided by JDeveloper. 
oracle.ide.editor Contains classes and interfaces that allow addins to add their own specialized editors to JDeveloper. 
oracle.ide.explorer Contains the interfaces and classes addins use to provide a structured view of data contained in nodes displayed in a navigator or an editor. 
oracle.ide.inspector Contains interfaces and classes that integrators may use to make their objects editable from the property inspector. 
oracle.ide.log Contains the interfaces and classes that allow addins to provide their own log pages. 
oracle.ide.navigator Contains classes providing navigator support. 
oracle.ide.print Contains classes that allow addins some level of control on the IDE print system. 
oracle.ide.util Contains utility classes. 
oracle.ide.view   
oracle.ideimpl.webupdate   
oracle.ideri.navigator   
oracle.jdeveloper.controller   
oracle.jdeveloper.db Classes for accessing database connections in JDeveloper (and other FCP products). 
oracle.jdeveloper.merge Contains classes for merge editor abstractions, including an editor addin, commands, a controller, and utilities. 
oracle.jdeveloper.vcs.changelist   
oracle.jdeveloper.vcs.changeset   
oracle.jdeveloper.vcs.generic   
oracle.jdeveloper.vcs.properties   
oracle.jdeveloper.vcs.spi Contains extension-level service provider interfaces for version control system integraton. 
oracle.jdeveloper.vcs.versionhistory   
oracle.jdeveloper.vcs.versiontree   
oracle.jdevimpl.audit.core   
oracle.jdevimpl.audit.log   
oracle.jdevimpl.compare   
oracle.jdevimpl.esdk   
oracle.jdevimpl.esdk.migration   
 

Uses of Controller in oracle.ide
 

Methods in oracle.ide that return Controller
static Controller Ide.getIdeController()
          Internal only.
 

Uses of Controller in oracle.ide.ceditor
 

Classes in oracle.ide.ceditor that implement Controller
 class CodeEditorController
          The CodeEditorController is the controller for the CodeEditor Addin.
 

Methods in oracle.ide.ceditor that return Controller
 Controller CodeEditor.getController()
          Gets the Controller associated with this view.
 Controller CodeEditorGutterView.getController()
           
 

Uses of Controller in oracle.ide.cmd
 

Classes in oracle.ide.cmd that implement Controller
 class FileOpenHistory
          The FileOpenHistory class manages the opened files history.
 

Uses of Controller in oracle.ide.controller
 

Subinterfaces of Controller in oracle.ide.controller
 interface TriggerController
          Extension writers should use this interface for actions registered in the trigger-hooks hook to handle the case where a trigger action is executed in a context where, although the rule succeeded and the action was enabled, after further evaluating the context, the action cannot be performed.
 interface WrappingController
           
 

Methods in oracle.ide.controller that return Controller
 Controller ControllerProvider.getController()
          Get the Controller associated with this view.
 

Methods in oracle.ide.controller with parameters of type Controller
 void IdeAction.addController(Controller controller)
          Adds the specified controller to the list of controllers that manage this IdeAction.
static void IdeAction.addController(int actionID, Controller controller)
          Convenience method for looking up the specified IdeAction by its action ID and, if found, adding the specified controller to it.
 void IdeAction.addControllerLast(Controller controller)
           
 void IdeAction.removeController(Controller controller)
          Removes the specified controller from the list of controllers that manage this IdeAction.
static void IdeAction.removeController(int actionID, Controller controller)
          Convenience method for looking up the specified IdeAction by its action ID and, if found, removing the specified controller from it.
 

Uses of Controller in oracle.ide.db.transfer.generate
 

Classes in oracle.ide.db.transfer.generate that implement Controller
 class GenerateController
          Controller class for generation.
 

Uses of Controller in oracle.ide.docking
 

Classes in oracle.ide.docking that implement Controller
 class DockStation
           The singleton for docking operations.
 

Methods in oracle.ide.docking that return Controller
 Controller DrawerWindow.getController()
           
 Controller DrawerDockableWindow.getController()
           
 

Methods in oracle.ide.docking with parameters of type Controller
 void DrawerDockableWindow.addDelegateController(Controller delegate)
           
 void DrawerWindow.addDelegateControllers(Controller... delegates)
          Adds the given controllers as "delegate controllers." The controller of this instance will handle an event or an update only if the "delegate controllers" were not able to do so.
 

Constructors in oracle.ide.docking with parameters of type Controller
DrawerWindow(java.lang.String viewId, View decorated, Controller controller, DrawerWindowConfig config)
           
 

Uses of Controller in oracle.ide.editor
 

Classes in oracle.ide.editor that implement Controller
 class EditorManager
          The EditorManager serves as the registry for Editor that want to register themselves with specific Node types.
 

Methods in oracle.ide.editor that return Controller
 Controller Editor.getController()
           
 

Uses of Controller in oracle.ide.explorer
 

Classes in oracle.ide.explorer that implement Controller
 class ExplorerManager
          The ExplorerManager interface acts as a registry for Explorer types registered against a given Document type specific to a given View type.
 

Methods in oracle.ide.explorer that return Controller
 Controller Explorer.getController()
          Get the Controller for this View.
 

Uses of Controller in oracle.ide.inspector
 

Classes in oracle.ide.inspector that implement Controller
 class InspectorManager
          The InspectorManager manages property inspector views.
 

Uses of Controller in oracle.ide.log
 

Classes in oracle.ide.log that implement Controller
 class AbstractLogManager
          The AbstractLogManager class provides the basic support for managing and showing a log page's context menu.
 class LogManager
          The LogManager interface should be implemented to provide customized management of LogPages.
 

Methods in oracle.ide.log that return Controller
 Controller DefaultLogPage.getController()
           
 Controller MessagePage.getController()
          Gets the Controller for the message page
 Controller AbstractLogPage.getController()
           
 

Methods in oracle.ide.log with parameters of type Controller
 void MessagePage.setController(Controller controller)
           
 

Uses of Controller in oracle.ide.navigator
 

Classes in oracle.ide.navigator that implement Controller
 class ContentSetSupport
           
 class NavigatorManager
          The NavigatorManager is responsible for managing the creation of the system navigator and transient navigators opened on selected nodes.
 class ProjectNavigatorManager
           
 

Methods in oracle.ide.navigator that return Controller
 Controller ProjectNavigatorWindow.getController()
           
 Controller NavigatorInit.getController()
           
 

Uses of Controller in oracle.ide.print
 

Classes in oracle.ide.print that implement Controller
 class PrintManager
           
 

Uses of Controller in oracle.ide.util
 

Classes in oracle.ide.util that implement Controller
 class WeightedController
          A WeightedController allows to chain controllers using a weight to control the order.
 

Fields in oracle.ide.util declared as Controller
static Controller WeightedController.NOOP_CONTROLLER
          A generic controller that disables the action and does nothing to handle it.
static Controller WeightedController.USE_ACTIVE_VIEW_CONTROLLER
          A generic controller that redirects to the active view.
 

Methods in oracle.ide.util with parameters of type Controller
 void WeightedController.addController(Controller controller, double weight)
          Adds a controller to the list.
 void WeightedController.removeController(Controller controller)
           
 

Constructors in oracle.ide.util with parameters of type Controller
WeightedController(Controller firstController, Controller lastController)
           
 

Uses of Controller in oracle.ide.view
 

Classes in oracle.ide.view that implement Controller
 class MultiManager
          The MultiManager class is a base class for other managers that can support support either a singleton view or multiple views based on a configurable setting.
 class PinnableManager
           
 

Methods in oracle.ide.view that return Controller
 Controller ViewDecorator.getController()
           
 Controller View.getController()
           
 

Uses of Controller in oracle.ideimpl.webupdate
 

Classes in oracle.ideimpl.webupdate that implement Controller
 class WebUpdateController
          Controller for check for updates.
 

Uses of Controller in oracle.ideri.navigator
 

Classes in oracle.ideri.navigator that implement Controller
 class oracle.ideri.navigator.DefaultNavigatorManager
           
 

Uses of Controller in oracle.jdeveloper.controller
 

Classes in oracle.jdeveloper.controller that implement Controller
 class NodeActionController
          A controller which executes an action on one or more nodes using subclass- specific delegates.
 

Uses of Controller in oracle.jdeveloper.db
 

Classes in oracle.jdeveloper.db that implement Controller
 class DatabaseActions
          Actions specific to databases for use in the IDE.
 

Uses of Controller in oracle.jdeveloper.merge
 

Classes in oracle.jdeveloper.merge that implement Controller
 class MergeController
          Controller class for merge editor commands.
 

Methods in oracle.jdeveloper.merge that return Controller
protected  Controller BaseMergeEditor.getControllerImpl()
          
 

Uses of Controller in oracle.jdeveloper.vcs.changelist
 

Classes in oracle.jdeveloper.vcs.changelist that implement Controller
 class ChangeListController
           
 

Methods in oracle.jdeveloper.vcs.changelist that return Controller
protected  Controller ChangeListWindow.createController()
          Create and return the controller
 Controller ChangeListWindow.getController()
          Get the controller.
 

Uses of Controller in oracle.jdeveloper.vcs.changeset
 

Classes in oracle.jdeveloper.vcs.changeset that implement Controller
 class ChangeSetController
           
 

Uses of Controller in oracle.jdeveloper.vcs.generic
 

Methods in oracle.jdeveloper.vcs.generic with parameters of type Controller
 boolean ActionRequirement.isSatisfied(VCSProfile profile, Context context, Controller controller)
           
 boolean EditableRequirement.isSatisfied(VCSProfile profile, Context context, Controller controller)
           
 

Uses of Controller in oracle.jdeveloper.vcs.properties
 

Classes in oracle.jdeveloper.vcs.properties that implement Controller
 class PropertiesController
           
 

Uses of Controller in oracle.jdeveloper.vcs.spi
 

Classes in oracle.jdeveloper.vcs.spi that implement Controller
 class VCSContextualController
           
 class VCSController
          Abstract superclass for version client controllers.
 

Uses of Controller in oracle.jdeveloper.vcs.versionhistory
 

Classes in oracle.jdeveloper.vcs.versionhistory that implement Controller
 class VersionHistoryController
           
 

Uses of Controller in oracle.jdeveloper.vcs.versiontree
 

Classes in oracle.jdeveloper.vcs.versiontree that implement Controller
 class VersionTreeController
           
 

Uses of Controller in oracle.jdevimpl.audit.core
 

Classes in oracle.jdevimpl.audit.core that implement Controller
 class AuditController
          The controller and context menu listener for Audit actions.
 

Uses of Controller in oracle.jdevimpl.audit.log
 

Classes in oracle.jdevimpl.audit.log that implement Controller
 class AuditLogPanel
          The UI component for the Audit log page.
 

Methods in oracle.jdevimpl.audit.log that return Controller
 Controller AuditLogPage.getController()
           
 

Uses of Controller in oracle.jdevimpl.compare
 

Classes in oracle.jdevimpl.compare that implement Controller
 class oracle.jdevimpl.compare.CompareController
           
 

Uses of Controller in oracle.jdevimpl.esdk
 

Classes in oracle.jdevimpl.esdk that implement Controller
 class ESDKController
          Controller for the extension SDK design time.
 

Uses of Controller in oracle.jdevimpl.esdk.migration
 

Classes in oracle.jdevimpl.esdk.migration that implement Controller
 class MigrationController
           
 


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.