Business Components

Uses of Interface
oracle.jbo.ComponentObject

Packages that use ComponentObject
oracle.jbo Contains interfaces for client-side applications. 
oracle.jbo.server Contains the implementation of middle tier components. 
 

Uses of ComponentObject in oracle.jbo
 

Subinterfaces of ComponentObject in oracle.jbo
 interface ApplicationModule
          Defines containers for coordinated objects related to a particular task.
 interface ViewLink
          Implemented by View Link classes.
 interface ViewObject
          Defines the presentation of the Entity Objects selected by an an SQL statement.
 

Methods in oracle.jbo that return ComponentObject
 ComponentObject ApplicationModule.findComponentObject(java.lang.String coName)
          Finds a named Component Object.
 ComponentObject ApplicationModule.createComponentObject(java.lang.String coName, java.lang.String coDefName)
          Creates a Component Object from the name of a ComponentObject metadata definition.
 

Uses of ComponentObject in oracle.jbo.server
 

Classes in oracle.jbo.server that implement ComponentObject
 class ApplicationModuleImpl
          The base class of Application Modules.
 class ComponentObjectImpl
          Abstract class for ComponentObjectImpl.
 class ContainerObjectImpl
          The implementation of the ContainerObject interface.
 class ViewLinkImpl
          Implements the ViewLink interface, the middle-tier class that manages a master-detail relationship between two View Objects.
 class ViewObjectImpl
          The implementation of the ViewObject interface, the middle-tier class that manages database queries and the view rows that result from executing queries.
 

Methods in oracle.jbo.server that return ComponentObject
 ComponentObject ContainerObjectImpl.findComponentObject(java.lang.String compName)
           
 ComponentObject ContainerObjectImpl.createComponentObject(java.lang.String compName, java.lang.String compDefName)
           
 ComponentObject ApplicationModuleImpl.findComponentObject(java.lang.String compName)
          Find the component Object from the AppModule, This can be a generic component
 ComponentObject ApplicationModuleImpl.createComponentObject(java.lang.String coName, java.lang.String comDefName)
           
 ComponentObject ContainerObjectEvent.getComponentObject()
          Gets the event's component object.
 ComponentObject ContainerObject.findComponentObject(java.lang.String compName)
          Find a component Object from the container
 ComponentObject ContainerObject.createComponentObject(java.lang.String compName, java.lang.String CompDefName)
          Create a component Object from the container
 

Constructors in oracle.jbo.server with parameters of type ComponentObject
ContainerObjectEvent.ContainerObjectEvent(ContainerObject src, ComponentObject component)
          Creates a ContainerObject event.
 


Business Components