Business Components

Uses of Interface
oracle.jbo.ViewLink

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

Uses of ViewLink in oracle.jbo
 

Methods in oracle.jbo that return ViewLink
 ViewLink ApplicationModule.findViewLink(java.lang.String viewLinkName)
          Finds a named View Link.
 ViewLink ApplicationModule.createViewLink(java.lang.String viewLinkName, java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a new View Link.
 ViewLink ApplicationModule.createViewLinkFromEntityAssocName(java.lang.String viewLinkName, java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a new View Link.
 ViewLink ApplicationModule.createViewLinkBetweenViewObjects(java.lang.String viewLinkName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a new View Link.
 

Methods in oracle.jbo with parameters of type ViewLink
 AttributeDef ViewObject.findViewLinkAccessor(ViewLink vl)
          Finds the view link accessor attribute.
 

Constructors in oracle.jbo with parameters of type ViewLink
ViewLinkAlreadyExistsException.ViewLinkAlreadyExistsException(ViewLink vl, RowSetIterator masterRSI, RowSet detailRowSet)
          Constructs a new instance.
 

Uses of ViewLink in oracle.jbo.server
 

Classes in oracle.jbo.server that implement ViewLink
 class ViewLinkImpl
          Implements the ViewLink interface, the middle-tier class that manages a master-detail relationship between two View Objects.
 

Methods in oracle.jbo.server that return ViewLink
 ViewLink ApplicationModuleImpl.createViewLink(java.lang.String viewLinkName, java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink ApplicationModuleImpl.createViewLinkFromEntityAssocName(java.lang.String viewLinkName, java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink ApplicationModuleImpl.createViewLinkBetweenViewObjects(java.lang.String viewLinkName, java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link.
 ViewLink ApplicationModuleImpl.findViewLink(java.lang.String vlName)
           
 ViewLink NullDBTransactionImpl.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Implementation of the DBTransaction interface.
 ViewLink NullDBTransactionImpl.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Implementation of the DBTransaction interface.
 ViewLink NullDBTransactionImpl.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Implementation of the DBTransaction interface.
 ViewLink DBTransactionImpl.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransactionImpl.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransactionImpl.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link.
 ViewLink DBTransaction.createViewLink(java.lang.String viewLinkDefName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransaction.createViewLinkFromEntityAssocName(java.lang.String entityAssocName, ViewObject master, ViewObject detail)
          Creates a View Link.
 ViewLink DBTransaction.createViewLinkBetweenViewObjects(java.lang.String accessorName, ViewObject master, AttributeDef[] srcAttrs, ViewObject detail, AttributeDef[] destAttrs, java.lang.String assocClause)
          Creates a View Link.
 ViewLink[] ViewObjectImpl.getViewLinks()
          Constructs an array of View Links that involve this View Object.
 

Methods in oracle.jbo.server with parameters of type ViewLink
 AttributeDef ViewObjectImpl.findViewLinkAccessor(ViewLink vl)
          Finds the View Link accessor attribute.
 


Business Components