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

E13403-04

Uses of Interface
oracle.ide.model.Observer

Packages that use Observer
oracle.ide.ceditor The Code Editor package contains the code editing implementation of the JDeveloper IDE. 
oracle.ide.controller   
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.model Contains interfaces and classes implementing JDeveloper's data model. 
oracle.ide.palette Contains classes that allow for palette integration and commands. 
oracle.ide.util Contains utility classes. 
oracle.ide.view   
oracle.jdeveloper.cmt The Component Model Tool, an API for manipulating Java source code. 
oracle.jdeveloper.compiler Contains classes that allow addins to integrate their own build system translator. 
oracle.jdeveloper.deploy.dt   
oracle.jdeveloper.library The Libraries package provides the library API used by JDeveloper. 
oracle.jdeveloper.merge Contains classes for merge editor abstractions, including an editor addin, commands, a controller, and utilities. 
oracle.jdeveloper.offlinedb.browser Offline Database Node implementations for the JDeveloper's Application Navigator. 
oracle.jdeveloper.uieditor Contains classes that allow addins access to the UIEditor integration objects. 
oracle.jdeveloper.vcs.spi Contains extension-level service provider interfaces for version control system integraton. 
oracle.jdeveloper.vcs.versionhistory   
oracle.jdevimpl.compare   
oracle.jdevimpl.history   
 

Uses of Observer in oracle.ide.ceditor
 

Classes in oracle.ide.ceditor that implement Observer
 class CodeEditor
          The CodeEditor is the integration layer between the IDE and the editor components to provide a code editor inside the IDE.
 

Uses of Observer in oracle.ide.controller
 

Classes in oracle.ide.controller that implement Observer
 class CommandProcessor
          The CommandProcessor singleton class is responsible for managing the execution of the IDE commands and managing the undo stack.
 

Uses of Observer in oracle.ide.editor
 

Classes in oracle.ide.editor that implement Observer
 class AbstractEditor
          Deprecated. The Editor hierarchy has been collapsed
 class AbstractFlatEditor
          Deprecated. The Editor hierarchy has been collapsed
 class Editor
          Editors such as code, gui, html editors should implements the Editor interface.
 class FlatEditor
          Deprecated. The Editor hierarchy has been collapsed
 

Uses of Observer in oracle.ide.explorer
 

Classes in oracle.ide.explorer that implement Observer
 class ExplorerWindow
           
 

Uses of Observer in oracle.ide.inspector
 

Classes in oracle.ide.inspector that implement Observer
 class InspectorWindow
          The InspectorWindow is a View consisting of a Toolbar area, a main body area and a status area.
 

Uses of Observer in oracle.ide.model
 

Classes in oracle.ide.model that implement Observer
 class DataContainer
           
 class HashStructureNode
          Node implementation for an object that stores properties in a HashStructure and persists those properties to XML via HashStructureIO.
 class IdeSystem
          This class is for internal use, and should not be used by extension developers.
 class Project
          This class represents a user project in the IDE.
 class Workspace
          Workspace represents an Application.
 

Methods in oracle.ide.model with parameters of type Observer
 void Connections.attach(Observer observer)
           
 void Subject.attach(Observer observer)
          Registers an observer interested in being notified when the internal state of the class implementing the Subject interface changes.
 void IdeSubject.attach(Observer observer)
          Registers an Observer interested in being notified when the internal state of the class implementing the Subject interface changes.
 void ObservableFolder.attach(Observer observer)
           
 void Node.attach(Observer observer)
           
static void NodeFactory.attach(Observer observer, java.lang.Class<? extends Node> type)
          Associates the specified observer with the given type.
 void Connections.detach(Observer observer)
           
 void Subject.detach(Observer observer)
          Unregisters an observer that is not interested anymore in being notified when the internal state of the class implementing the Subject interface changes.
 void IdeSubject.detach(Observer observer)
          Unregisters an observer that is not interested anymore in being notified when the internal state of the class implementing the Subject interface changes.
 void ObservableFolder.detach(Observer observer)
           
 void Node.detach(Observer observer)
           
static void NodeFactory.detach(Observer observer, java.lang.Class<? extends Node> type)
          Removes the specified observer from the given type list of observers.
 

Uses of Observer in oracle.ide.palette
 

Methods in oracle.ide.palette with parameters of type Observer
 void PaletteItem.attach(Observer observer)
           
 void PaletteItem.detach(Observer observer)
           
 

Uses of Observer in oracle.ide.util
 

Classes in oracle.ide.util that implement Observer
 class ContextWatcher
          Deprecated. since 11.1.1 with no replacement.
 

Uses of Observer in oracle.ide.view
 

Classes in oracle.ide.view that implement Observer
 class AbstractPinnable
          AbstractPinnable implements the Pinnable interface as it applies to a DockableWindow which is capable of responding to changes in selection in the active View as well as changes of the active View from one View to another.
 

Uses of Observer in oracle.jdeveloper.cmt
 

Classes in oracle.jdeveloper.cmt that implement Observer
 class CmtComponentManager
           
 

Uses of Observer in oracle.jdeveloper.compiler
 

Classes in oracle.jdeveloper.compiler that implement Observer
 class CompilerPage
           
 class ProblemsPage
          This implementation of LogPage supports the logging of simple text messages.
 

Uses of Observer in oracle.jdeveloper.deploy.dt
 

Methods in oracle.jdeveloper.deploy.dt with parameters of type Observer
 void DeployElement.attach(Observer observer)
           
 void DeployFolder.attach(Observer observer)
           
 void DeployElement.detach(Observer observer)
           
 void DeployFolder.detach(Observer observer)
           
 

Uses of Observer in oracle.jdeveloper.library
 

Classes in oracle.jdeveloper.library that implement Observer
 class AbstractDerivedLibrary
          AbstractDerivedLibrary class.
 class ProjectLibrary
          ProjectLibrary class.
 

Methods in oracle.jdeveloper.library with parameters of type Observer
 void JLibraryManager.attach(Observer observer)
           
 void JLibraryManager.detach(Observer observer)
           
 

Uses of Observer in oracle.jdeveloper.merge
 

Classes in oracle.jdeveloper.merge that implement Observer
 class AbstractMergeEditor
          Abstract class for a dynamically registered merge editor.
 class TextMergeEditor
          Textual merge editor specialization class.
 

Uses of Observer in oracle.jdeveloper.offlinedb.browser
 

Classes in oracle.jdeveloper.offlinedb.browser that implement Observer
 class ProviderNode
          Node for a provider in the navigator.
 

Uses of Observer in oracle.jdeveloper.uieditor
 

Classes in oracle.jdeveloper.uieditor that implement Observer
 class UIEditor
          Editor implementation whose visuals depict the GUI declared in a JavaSourceNode instance.
 

Uses of Observer in oracle.jdeveloper.vcs.spi
 

Classes in oracle.jdeveloper.vcs.spi that implement Observer
 class VCSSingleSaveObserver
          Deprecated. replaced by VCSSingleNodeObserver.
 

Uses of Observer in oracle.jdeveloper.vcs.versionhistory
 

Classes in oracle.jdeveloper.vcs.versionhistory that implement Observer
 class VersionHistoryViewer
           
 

Uses of Observer in oracle.jdevimpl.compare
 

Classes in oracle.jdevimpl.compare that implement Observer
 class oracle.jdevimpl.compare.BaseCompareEditor
           
 

Uses of Observer in oracle.jdevimpl.history
 

Classes in oracle.jdevimpl.history that implement Observer
 class oracle.jdevimpl.history.HistoryViewer
           
 


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

E13403-04

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